MyBB Community Forums

Full Version: In-line Moderation = Not Working?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
All the other moderation tools work fine- it's just when you select posts/threads the in-line moderation at the bottom stays at (0).

I've been trying to search for solutions on your forum haven't found one that's working yet. Any help would be appreciated. Though it isn't urgent, it's something I'd like to get fixed.

NOTE: I did disable all plugins to see, and it still didn't work so it's not a plugin conflict.
have you recently added jQuery (eg. myAlerts plugin) ? above issue could be due to that (jQ conflict or multiple jQ loading)
Yeah I have MyAlerts installed.
Do you know a fix that'll keep Myalerts and make Inline moderation work?
Include jQuery.noConflict(); under the library link of jQuery in headerinclude template.

Like this:

<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script type="text/javascript">jQuery.noConflict();</script>
Just tried that. Didnt work.
This is my headerinclude template:

<link rel="alternate" type="application/rss+xml" title="{$lang->latest_threads} (RSS 2.0)" href="{$mybb->settings['bburl']}/syndication.php" />
<link rel="alternate" type="application/atom+xml" title="{$lang->latest_threads} (Atom 1.0)" href="{$mybb->settings['bburl']}/syndication.php?type=atom1.0" />

<meta http-equiv="Content-Type" content="text/html; charset={$charset}" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/prototype.js?ver=1400"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/general.js?ver=1400"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/popup_menu.js?ver=1400"></script>
<script type="text/javascript">
if (typeof jQuery == 'undefined') {
    document.write(unescape("%3Cscript src='http://code.jquery.com/jquery-1.7.2.min.js' type='text/javascript'%3E%3C/script%3E"));
}
</script>
<script type="text/javascript">jQuery.noConflict();</script>

<script type="text/javascript">
    var unreadAlerts = {$mybb->user['unreadAlerts']};
</script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/myalerts.js"></script>
{$stylesheets} <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> {$avvisospiti}
<script type="text/javascript">
<!--
	var cookieDomain = "{$mybb->settings['cookiedomain']}";
	var cookiePath = "{$mybb->settings['cookiepath']}";
	var cookiePrefix = "{$mybb->settings['cookieprefix']}";
	var deleteevent_confirm = "{$lang->deleteevent_confirm}";
	var removeattach_confirm = "{$lang->removeattach_confirm}";
	var loading_text = '{$lang->ajax_loading}';
	var saving_changes = '{$lang->saving_changes}';
	var use_xmlhttprequest = "{$mybb->settings['use_xmlhttprequest']}";
	var my_post_key = "{$mybb->post_code}";
	var imagepath = "{$theme['imgdir']}";
// -->
</script>
{$newpmmsg}

<script type="text/javascript" src="jscripts/shoutbox.js?ver=121"></script>
remove second jQuery code and check it again
<script src="http://code.jquery.com/jquery-latest.js"></script>
Could you link us to your forum please?

MyAlerts should not cause conflicts. I purposefully built it the way I did so it wouldn't.