MyBB Community Forums

Full Version: how do I defend my codes?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
don't appear this table - [Image: vx9NmGO.png]
when i want to make a post or to give a reply.

It appears on my forum -

[Image: SYQTMln.png]

how can add ?
First try to set the template "codebuttons" (under ungrouped templates) back to its original version.
(2015-07-02, 09:04 AM)Ad Bakker Wrote: [ -> ]First try to set the template "codebuttons" (under ungrouped templates) back to its original version.

This is a common issue with MyBB and it's usually down to a jquery issue.

OP:

Please open your headerinclude template and post it here inside [php] tags.
<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>

{$stylesheets}
<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" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/images/fd/js/sidebar.js"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/images/fd/js/ddes.js"></script>
<script type='text/javascript' src="{$mybb->settings['bburl']}/images/fd/js/colorpicker.js"></script>
<script type='text/javascript' src="{$mybb->settings['bburl']}/images/fd/js/color-picker.js"></script>


<script type="text/javascript">
jQuery.noConflict();

jQuery(document).ready(function($) {
    $('.dropDownHook span').on('click', function() {
        $(this).parents('.dropDownHook').children('.dropDownContent').stop(true, true).slideToggle('fast', function() {

            if ($('.dropDownContent').is(':visible')) {
                //  This alters the content of the "hook" when we open the drop down
                $('.dropDownHook span').html('Welcome {$mybb->user['username']} ▲');
            }
            else {
                //  This alters the content of the "hook" when we close the dropdown
                $('.dropDownHook span').html('Welcome {$mybb->user['username']} ▼');
            }

        });
    });
    
    $('html').on('click', function() {
        $('.dropDownContent:visible').slideToggle('fast');
    });

    $('.dropDownHook > *').on('click', function(event) {
        event.stopPropagation();
    });
});
</script>
<link type="text/css" rel="stylesheet" href="{$mybb->settings['bburl']}/images/fd/js/colorpicker.css" />
<link rel="stylesheet" href="{$mybb->settings['bburl']}/images/fd/font/font-awesome.min.css">
<link rel="stylesheet" href="{$mybb->settings['bburl']}/images/fd/font/font-awesome-ie7.min.css">
{$stylesheets}
<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>
^ which theme you are using and can we have your forum url ..
I already see a double general.js (one with version 1800 and one with 1603). Delete the last.
(2015-07-02, 12:00 PM)Ad Bakker Wrote: [ -> ]I already see a double general.js (one with version 1800 and one with 1603). Delete the last.

didn't work as you expect..

Site is www.icestrike.ro/forum
the theme you are using belongs to MyBB 1.6.x AND it is a premium theme.
you should contact the theme coder for the issues with it. btw, can you PM me purchase proof of the theme ..
I don't know whether having both jquery.js and jquery.min.js is also wrong (I think so). But .m. knows this, so you will hear this as soon as you have answered his last question.