MyBB Community Forums

Full Version: Not work moderation function
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Helo, Not work moderation function on the forum. My forum www.decoupageforum.pl

Code from headerinclude

<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 src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">jQuery.noConflict();</script>
<script type="text/javascript" src="images/CoffeeStyl/js/lightbox_me.js"></script>
<script type="text/javascript" src="images/CoffeeStyl/js/animate-bg.js"></script>


{$stylesheets}
<script type="text/javascript">
    jQuery(function($) {
    $('#menu_class').click(function () {
    $('ul.the_menu').slideToggle('medium');
    });

        $("div.profil_kat1").fadeIn();
        $("div.profil_kat2").css("display", "none");
        
        $("ul#nav li a").addClass("js");
        $("ul#nav li a").hover(function() {
            $(this).stop(true, true).animate({
                backgroundPosition : "(0 0)"
            }, 600);
            $(this).animate({
                backgroundPosition : "(0 -5px)"
            }, 150);
        }, function() {
            $(this).animate({
                backgroundPosition : "(0 -119px)"
            }, 500);
        });
        function launch() {
            $('#sign_up').lightbox_me({
                centered : true,
                onLoad : function() {
                    $('#sign_up').find('input:first').focus()
                }
            });
        }


        $('#try-1').click(function(e) {
            $("#sign_up").lightbox_me({
                centered : true,
                onLoad : function() {
                    $("#sign_up").find("input:first").focus();
                }
            });
            e.preventDefault();
        });
        $('.close').click(function(e) {
            $('#pasek_gorny').animate({opacity: 1,}, 1000);
            $("#sign_up").fadeOut();
        });
        $('table tr:nth-child(even)').addClass('stripe');
        $(".profil_nav > li").click(function(e) {
            switch(e.target.id) {
                case "profil_kat1":
                    $("#profil_kat1").addClass("active");
                    $("#profil_kat2").removeClass("active");
                    $("div.profil_kat1").fadeIn();
                    $("div.profil_kat2").css("display", "none");
                    break;
                case "profil_kat2":
                    $("#profil_kat1").removeClass("active");
                    $("#profil_kat2").addClass("active");
                    $("div.profil_kat2").fadeIn();
                    $("div.profil_kat1").css("display", "none");
                    break;
            }
            return false;
        });
    });


</script>
exactly which version of MyBB you are using ? (admin panel home page gives forum version)
I have 1.6.16 version
have you recently added external cookie scripts ? they are affecting MyBB forum cookies.

would you like to PM me temporary access to forum admin panel to check the issue
please write here what do you want from admin panel, i'll give you
^ comment out external cookie scripts wherever you have them in the templates and check if referred issue gets fixed
I delete this code cookie but still not work
^ switch to default theme of MyBB through your user control panel options.
does the inline moderation work with MyBB's original theme ?
I don't have default theme because it's break. But I have different theme (The Gray) form mybb.com and there it's works.
Already copied code from headerinclude (The Gray theme) to Coffee Theme (current template) but doesn't work.
^ that coffee theme was originally made for MyBB 1.4.x and it does not work perfectly on MyBB 1.6.x
Pages: 1 2