MyBB Community Forums

Full Version: My Moderation Panel Not Working
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My Moderation Panel Not Working


Solved By Me Himself

I un-able to Close, Move, Split, Delete, Approve , Unapproved Any Thread...

When I select any thread and go to Any Actions Like Move or Delete

A Massage Is Come

Sorry, but you did not select any threads to perform inline moderation on, or your previous moderation session has expired (Automatically after 1 hour of inactivity). Please select some threads and try again.

Please help me to solve it....
======================================================

No One Answer me

Ok but I Solve It...

By Finding Some Hard & Applying May Times..


Ok I will Explain

you have jQuery loading twice (code is in headerinclude template) - remove one AND add jQuery noconflict code after jQuery like below

Find headerinclude in templates or your Default Tempalte...

Find Code

<script type="text/javascript">jQuery.noConflict();
jQuery(function($) { $(".close").click(function () {
  $(".avviso").fadeOut("slow");
  }); });</script> <script src="http://code.jquery.com/jquery-latest.js"></script>[/
code]

& replace it with new code..

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript">jQuery.noConflict();</script>

Its Done Enjoye Now

HeartHeartHeart