MyBB Community Forums

Full Version: MYBB 1.8 inline moderation quick reply not working.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When i click on the checkbox to remove some text it says Go (0) but its checked and selected.
Also when i try to remove it says:
Sorry, but you did not select any posts to perform inline moderation on, or your previous moderation session has expired (Automatically after 1 hour of inactivity). Please select some posts and try again.

Here its my headerinclude:
<link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>

<link href='http://fonts.googleapis.com/css?family=Roboto:700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet' type='text/css'>
<script src="images/forumhn/jsfiles.js"></script>

<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>


<script type="text/javascript">
jQuery.noConflict();
</script>
{$stylesheets}

<script src="images/forumhn/style/styleswitch.js" type="text/javascript"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript">jQuery.noConflict();</script> 
<script type="text/javascript" src="images/forumhn/style/cookie.js"></script>
<script type="text/javascript" src="images/forumhn/style/toggle.js"></script>
<script type="text/javascript" src="images/forumhn/style/easing.js"></script>
<script type="text/javascript" src="images/forumhn/style/general.js"></script>
<script type="text/javascript" src="images/forumhn/style/profile.js"></script>
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> 
<link href='http://fonts.googleapis.com/css?family=Roboto:400,500,500italic,400italic,700,700italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Exo' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Electrolize' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Orbitron:700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<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="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript" src="jscripts/jquery.cookie.js"></script>
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function($) {
$(".tab_content").hide(); 
$("ul.tabs li:first").addClass("active").show();
$(".tab_content:first").show(); 
$("ul.tabs li").click(function() {
$("ul.tabs li").removeClass("active"); 
$(this).addClass("active"); 
$(".tab_content").hide(); 
var activeTab = $(this).find("a").attr("href"); 
$(activeTab).fadeIn();
return false;
});
});

</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);
});


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

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

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

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

    else if ($.cookie('sidebar_cookie') == 'collapsed') {
        $('#indexy').animate({ width: "79%" }, 200, function() {
            $('#sidebar').fadeIn(200);
        });
        $('.sidebar_toggle').css({ backgroundColor: "#1a1a1a" });
        $.cookie('sidebar_cookie', 'expanded', { expires: 7 }); 
    } 

});


});
</script>


<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('.jsphead').click(function(){
    jQuery(this).next('.jspbody').slideToggle('fast');
});

});
</script>
You are loading the jQuery library multiple times for starters. The prototype library is not used anymore. It does appear that you are using a theme designed for 1.6 instead of 1.8. You should browse the Extend Section for themes that are compatible with 1.8.
So its not possible to fix it and use it for 1.8? Because everything other its working except that.
My theme was designed for 1.6x because i was using 1.6x forums now i move to 1.8x
Nothing is impossible, buy you may require knowledge/money to fix the old theme. Or luck to find someone to do all the changes for free. So it's easier to download a 1.8 compatible theme.


But here's the fixed headerinclude:
<link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Roboto:700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Exo' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Electrolize' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Orbitron:700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> 
<link href='http://fonts.googleapis.com/css?family=Roboto:400,500,500italic,400italic,700,700italic' rel='stylesheet' type='text/css'>
{$stylesheets}
<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->asset_url}/jscripts/jquery.js?ver=1800"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/jquery.plugins.min.js?ver=1800"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/general.js?ver=1800"></script>
<script type="text/javascript" src="images/forumhn/jsfiles.js"></script>
<script type="text/javascript" src="images/forumhn/style/styleswitch.js" type="text/javascript"></script>
<script type="text/javascript" src="images/forumhn/style/toggle.js"></script>
<script type="text/javascript" src="images/forumhn/style/easing.js"></script>
<script type="text/javascript" src="images/forumhn/style/general.js"></script>
<script type="text/javascript" src="images/forumhn/style/profile.js"></script>

<script type="text/javascript">
<!--
	lang.unknown_error = "{$lang->unknown_error}";

	lang.select2_match = "{$lang->select2_match}";
	lang.select2_matches = "{$lang->select2_matches}";
	lang.select2_nomatches = "{$lang->select2_nomatches}";
	lang.select2_inputtooshort_single = "{$lang->select2_inputtooshort_single}";
	lang.select2_inputtooshort_plural = "{$lang->select2_inputtooshort_plural}";
	lang.select2_inputtoolong_single = "{$lang->select2_inputtoolong_single}";
	lang.select2_inputtoolong_plural = "{$lang->select2_inputtoolong_plural}";
	lang.select2_selectiontoobig_single = "{$lang->select2_selectiontoobig_single}";
	lang.select2_selectiontoobig_plural = "{$lang->select2_selectiontoobig_plural}";
	lang.select2_loadmore = "{$lang->select2_loadmore}";
	lang.select2_searching = "{$lang->select2_searching}";

	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 rootpath = "{$mybb->settings['bburl']}";
	var imagepath = "{$theme['imgdir']}";
  	var yes_confirm = "{$lang->yes}";
	var no_confirm = "{$lang->no}";
	var MyBBEditor = null;
	var spinner_image = "{$theme['imgdir']}/spinner.gif";
	var spinner = "<img src='" + spinner_image +"' alt='' />";
// -->
</script>
{$newpmmsg}

<script type="text/javascript">
$(document).ready(function() {
$(".tab_content").hide(); 
$("ul.tabs li:first").addClass("active").show();
$(".tab_content:first").show(); 
$("ul.tabs li").click(function() {
$("ul.tabs li").removeClass("active"); 
$(this).addClass("active"); 
$(".tab_content").hide(); 
var activeTab = $(this).find("a").attr("href"); 
$(activeTab).fadeIn();
return false;
});
});
</script>
<script type="text/javascript">
$(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);
});


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

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

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

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

    else if ($.cookie('sidebar_cookie') == 'collapsed') {
        $('#indexy').animate({ width: "79%" }, 200, function() {
            $('#sidebar').fadeIn(200);
        });
        $('.sidebar_toggle').css({ backgroundColor: "#1a1a1a" });
        $.cookie('sidebar_cookie', 'expanded', { expires: 7 }); 
    } 

});
});
</script>
<script type="text/javascript">
$(document).ready(function(){
$('.jsphead').click(function(){
    $(this).next('.jspbody').slideToggle('fast');
});
});
</script>

More or less, at least, since I don't know what your theme's JS files like forumhn/jsfiles.js contain.
The problem its here when i use the toggle.js, its not working but when i dont use it its working, but i want the old editor like the toggle.js, so whats problem here?
jQuery.noConflict();



jQuery(function(jQuery) {

    jQuery(".collapse").hide();

    jQuery(".expand").click(function() {

        jQuery("#container, .wrap, .header, #menu").stop(true, true).delay(0).css({width: '95%'}, 300);	

        jQuery(this).hide();

        jQuery(".collapse").show();

        jQuery.cookie("resize","collapsed", {expires: 365});

        return false;

    });

    jQuery(".collapse").click(function() {

        jQuery("#container, .wrap, .header, #menu").stop(true, true).delay(0).css({width: '960px'}, 300);	

        jQuery(this).hide();

        jQuery(".expand").show();

        jQuery.cookie("resize","expanded", {expires: 365});

        return false;

    });

    if(jQuery.cookie("resize") == "collapsed") {

        jQuery(".expand").hide();

        jQuery(".collapse").show();

		jQuery("#container, .wrap, .header, #menu").css({width: '95%'});

    };

});
It changed the editor to 1.8's WYSIWYG. No idea what your theme used before, as I said supporting 1.6 themes in 1.8 is a pain.
Because i update the post, maybe you didnt saw i just post you the js script which change the editor to other and when i use it there its problem with inline, but when i move it there no problems. Its possible to change to another editor because this wysiwyg its bad when you like use after you preview or post you cant see the code which is included,.

Here its toggle.js editor:
http://i.imgur.com/AVZzo2z.png