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.
Hello, so recently i tried to delete multiple threads at once, when i noticed that the selected threads counter stayed at zero. I pressed go to delete them anyway, and then got this error.
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.
Now i hear its all in the headerinclude, which i tried editing and got no luck out of. So here is my headerinclude. If anyone knows how to fix this, please let me know! Thanks!
{$stylesheets}
<link href='http://fonts.googleapis.com/css?family=Roboto:400,500,500italic,400italic,700,700italic' rel='stylesheet' type='text/css'>

<meta name="keywords" content="freebies, groups, tutorials, graphics, forum, anime" />

<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>
<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="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>
<script type="text/javascript" src="images/omni/js/jquery.cookie.js"></script>
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function($) {

$('.menu ul li')
.mouseenter(function() {
    $(this).addClass('hovered');
    $(this).children('ul').slideDown(100);
})
.mouseleave(function() {
    $(this).removeClass('hovered');
    $(this).children('ul').hide();
});


var anchorWidth = $('a.anchor').width();

$('#panel .constraint')
.mouseenter(function() {
    $(this).children('a.anchor').addClass('hovered');
    $(this).children('a.anchor').stop(true, true).animate({
        width: "198px" 
    }, 100);

    $(this).children('div.dd, div.dd_login').stop(true, true).slideDown(150);
})
.mouseleave(function() {
    $(this).children('div.dd, div.dd_login').stop(true, true).delay(300).hide(0, function(){
        $('a.anchor').removeClass('hovered');
        $('a.anchor').stop(true, true).animate({
            width: anchorWidth + 20
        }, 100);
    });
});

$('.search_box input.search_textbox')
.focus(function() {
        $('.search_adv').fadeIn(200);
})
.blur(function() {
        $('.search_adv').fadeOut(200);
});

$(window).scroll(function() {
    if ($(this).scrollTop() > $('#header').offset().top + 100) {
        $('.return_top').fadeIn(200);
    }
    else {
        $('.return_top').fadeOut(200);
    }
});

$(".return_top").click(function() {
    $('html, body').animate({scrollTop: $('#header').offset().top}, 500);
});

$(".return_content").click(function() {
    $('html, body').animate({scrollTop: $('#container').offset().top}, 500);
});

if($('body').attr('id') == 'forums') {
        $('.navigation').append('<a class="sidebar_toggle"><img src="images/omni/sidebar_toggle.png" alt=""></a>');
}

if ($.cookie('sidebar_cookie') == null) {
    $.cookie('sidebar_cookie', 'expanded', { expires: 7 });	
}

else if ($.cookie('sidebar_cookie') == 'collapsed') {
        $('#sidebar').hide();
        $('#index_constraint').css({ width: "100%" }, 200);
        $('.sidebar_toggle').css({ backgroundColor: "#a0a0a0" });
}

$('.sidebar_toggle').click(function() {

    if ($.cookie('sidebar_cookie') == 'expanded') {
        $('#sidebar').fadeOut(200, function() {
            $('#index_constraint').animate({ width: "100%" }, 200);
        });
        $('.sidebar_toggle').css({ backgroundColor: "#a0a0a0" });
        $.cookie('sidebar_cookie', 'collapsed', { expires: 7 });	
    } 

    else if ($.cookie('sidebar_cookie') == 'collapsed') {
        $('#index_constraint').animate({ width: "74%" }, 200, function() {
            $('#sidebar').fadeIn(200);
        });
        $('.sidebar_toggle').css({ backgroundColor: "#6fa40e" });
        $.cookie('sidebar_cookie', 'expanded', { expires: 7 });	
    } 

});


});
</script>
exactly which version of MyBB you are using and which theme ? can we have your forum url ..
(2015-06-19, 02:29 AM).m. Wrote: [ -> ]exactly which version of MyBB you are using and which theme ? can we have your forum url ..
Im running 1.8.5.
http://-snip-com/
Re upload the /jscripts folder in the root of your MyBB forum.
(2015-06-20, 06:11 AM)Ben C Wrote: [ -> ]Re upload the /jscripts folder in the root of your MyBB forum.
Like the MyBB jscripts?
your theme is not compatible with MyBB 1.8.5

your forum should retain clear back link to MyBB
Hello there,

The forum you have posted does not have the minimum "Powered by MyBB" notice we require for technical support here. In order for us to give you further support, please add the following code to the footer template of your forum:

Admin CP --> Templates & Style --> *expand your template set* --> Footer Templates --> footer
Powered by <a href="http://www.mybb.com">MyBB</a>

I will close this thread until you have reinstated the Powered By line. Please post in the Private Inquiries forum to ask to have this thread reopened, where you can also raise any questions you have about this policy.

With regards,
MyBB Support Team
(2015-06-20, 06:36 AM).m. Wrote: [ -> ]Hello there,

The forum you have posted does not have the minimum "Powered by MyBB" notice we require for technical support here. In order for us to give you further support, please add the following code to the footer template of your forum:

Admin CP --> Templates & Style --> *expand your template set* --> Footer Templates --> footer
Powered by <a href="http://www.mybb.com">MyBB</a>

I will close this thread until you have reinstated the Powered By line. Please post in the Private Inquiries forum to ask to have this thread reopened, where you can also raise any questions you have about this policy.

With regards,
MyBB Support Team
Thanks for the heads up, i have added back the line now.