MyBB Community Forums

Full Version: Inline Moderation
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Just a quick problem I was having that I'm not sure where to look at.

None of my inline moderation appears to be working - I am using the Blue Lust theme. When I am on a forum looking at the list of threads or on a thread looking at the list of replies, I am able to checkmark on the right side for inline moderation.

However, when I scroll to the bottom to delete or move those posts it doesn't work. It shows that (0) are selected at that time.

Where should I be looking exactly to fix that?

Thanks in advance.
URL?
whatthefitment(dot)com/forums/

An admin account can be created for you if you need it AJS.
You are including jQuery twice for starters, delete one of these in your headerinclude template:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script> 
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script> 

And below the line you kept, add:
<script type="text/javascript">jQuery.noConflict();</script>
1. Go to Admin CP > Templates & Style > Templates > Blue Lust Templates > Ungrouped Templates > headerinclude.

2. Find:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script> 
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script> 

3. Replace with:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script type="text/javascript">jQuery.noConflict();</script>
That worked perfect, thanks for the help! Smile