MyBB Community Forums

Full Version: Quick Mod Contorl Problem. :c.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Board Software: Mybb.

Problem With: Checking threads/post.

Problem: I can't seem to get the Quick Mod Controls to work, from moving threads/deleting/locking/sticking.

Evidence: Can't really show the problem; but when I got to check the little box then scroll down to the bottom it still shows (0) rather then (1) as it should and allow me to do something to the thread.

Plugins: Achivements, Akismet, Force Postbit Layout, Hello World!, myUserTitle Plugin!, PHP and Template Conditionals, Are the only plugins we are currently using.

Deactivating them didn't have an effect on this issue.

Argos.
As always - jQuery conflict. Find in header template:
<script src="http://code.jquery.com/jquery-1.7rc2.js"></script>
<script>
function toggleDiv(divId) {
   $("#"+divId).fadeToggle("slow");
}
</script>
Modify it to:
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7rc2.js"></script>
<script type="text/javascript">jQuery.noConflict();</script>
<script type="text/javascript">
function toggleDiv(divId) {
   jQuery("#"+divId).fadeToggle("slow");
}
</script>
(2014-05-15, 01:39 PM)Destroy666 Wrote: [ -> ]As always - jQuery conflict. Find in header template:
<script src="http://code.jquery.com/jquery-1.7rc2.js"></script>
<script>
function toggleDiv(divId) {
   $("#"+divId).fadeToggle("slow");
}
</script>
Modify it to:
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7rc2.js"></script>
<script type="text/javascript">jQuery.noConflict();</script>
<script type="text/javascript">
function toggleDiv(divId) {
   jQuery("#"+divId).fadeToggle("slow");
}
</script>

That worked, thanks a lot; but I do have another slight problem; the things seemed to be squished/over lapping? Pic.

Annoying problem is persisting.
Anyone?
Check the padding on the select and the labels. If you are not sure what that means please provide a test account.