MyBB Community Forums

Full Version: Mod CP
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So I believe there is something wrong with my Mod CP. Whenever I try to do anything to a thread, I check to box next to it, but it never works and doesn't show up at the bottom that I did. Any ideas why this would be a problem?
Do you have any themes installed? Or changed any of the coding inside the templates for the ModCP?
What's your URL?
So I do have a theme installed, but I didn't change anything for the Mod CP. My forums is: http://bigmisssteak.gaming.bz/
Also, it works for one of my friends, but not for me.
(2016-11-30, 09:23 PM)|| PikaKid || Wrote: [ -> ]So I do have a theme installed, but I didn't change anything for the Mod CP. My forums is: http://bigmisssteak.gaming.bz/
Also, it works for one of my friends, but not for me.

Sometimes custom themes may have MyBB standards compliance issues that prevent moderation tasks from working. I am unsure about your specific case. I would wait until someone who has a better idea about the issue can start looking into things and come to a resolution for you Smile
You've got a javascript error on your site:

Uncaught TypeError: Cannot read property 'autoNS' of undefined

This will likely be stopping the javascript running leading to the issues you have. This seems to be the offending code:

jQuery("a").tipsy({gravity: jQuery.fn.tipsy.autoNS});
jQuery("title").tipsy({gravity: jQuery.fn.tipsy.autoNS});
jQuery("img").tipsy({gravity: jQuery.fn.tipsy.autoNS});
jQuery("i").tipsy({gravity: jQuery.fn.tipsy.autoNS});
jQuery("span").tipsy({gravity: jQuery.fn.tipsy.autoNS});
jQuery("div").tipsy({gravity: jQuery.fn.tipsy.autoNS});

This isn't default so is either form your theme or has been added yourself, either way this will need fixing.
(2016-12-01, 12:09 PM)Matt Wrote: [ -> ]You've got a javascript error on your site:

Uncaught TypeError: Cannot read property 'autoNS' of undefined

This will likely be stopping the javascript running leading to the issues you have. This seems to be the offending code:

jQuery("a").tipsy({gravity: jQuery.fn.tipsy.autoNS});
jQuery("title").tipsy({gravity: jQuery.fn.tipsy.autoNS});
jQuery("img").tipsy({gravity: jQuery.fn.tipsy.autoNS});
jQuery("i").tipsy({gravity: jQuery.fn.tipsy.autoNS});
jQuery("span").tipsy({gravity: jQuery.fn.tipsy.autoNS});
jQuery("div").tipsy({gravity: jQuery.fn.tipsy.autoNS});

This isn't default so is either form your theme or has been added yourself, either way this will need fixing.

Good job on identifying the JavaScript error. I don't have as much experience with JavaScript as I do with HTML and CSS. I seriously need to finish that eBook on JavaScript. Now let's work on finding the error with the JavaScript code and making everything work again Big Grin
http://bigmisssteak.gaming.bz/images/iga...y.tipsy.js

Seems to be that this file doesn't exist! Smile
(2016-12-01, 12:27 PM)Matt Wrote: [ -> ]http://bigmisssteak.gaming.bz/images/iga...y.tipsy.js

Seems to be that this file doesn't exist! Smile

I wonder if he downloaded a theme, free/paid, and the packager forgot to include the jscript file, or if the user didn't upload. If the OP of this thread could include this it'd be helpful in resolving the issue.