MyBB Community Forums

Full Version: inline moderation isn't working
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I can't seem to find why but the inline moderation isn't working on the threadview area. You can only move one thread at a time if you are inside the thread which is frustrating. This is the forum - http://ascension.digital-lace.com/index.php
your forum has jQuery loading code in the header template. add no conflict code for it and check
find code like below
<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js'></script>
add after it
<script type="text/javascript">jQuery.noConflict();</script>

however, it would be better to add the scripts & style loading codes in the headerinclude template (not in header)
That didn't work for some reason. Is it maybe the toggle script? would moving it to the headerinclude help?
my quick edit is also not working for some reason. Could that be a js conflict too?
Verify cookie in settings.php or here.
I have the same problem, I also can not find the headerinclude template.

also posted on another thread I found first (a newer thread), at:
http://community.mybb.com/thread-152556-...pid1075327
Headerinclude is under Ungrouped Templates.
I can not find/do not have Ungrouped Templates. I have the newest version of mybb installed
http://docs.mybb.com/Admin_CP_Templates.html

The code you need to change/apply may differ, so you should post either your headerinclude template or board URL.
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=1603"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/general.js?ver=1603"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/popup_menu.js?ver=1600"></script>
{$stylesheets}  
<!--
	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}

my site is set to closed right now, because there is over 20,000 spam posts, and I need to take care of this problem, to clean my site faster.
Pages: 1 2