MyBB Community Forums

Full Version: Editor bar has disappeared
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My editor bar has disappeared in ALL themes. I've tried installing a fresh copy of the MyBB, which should have copied the necessary files to the correct place. I've tried resetting the editor types. 

http://www.thecardboard.org/community/
provide a test user account so that someone can check it

ensure that all files of the theme (esp. belonging to jscripts folder) are uploaded to correct locations
I sent the password information via email to [email protected]
You have multiple jquery instances, including jquery ui and noconflict code (that was used in mybb 1.6).
(2018-01-13, 09:12 PM)Johnny S Wrote: [ -> ]You have multiple jquery instances, including jquery ui and noconflict code (that was used in mybb 1.6).

Thanks. Which ones should I remove?

(Please tell me as though I'm a five-year-old.)
Copy the contents of your headerinclude template (admincp -> templates and styles -> templates -> <your theme template set> -> ungrouped templates)
Copy them to where?
Here, so we can see what you have inside. Copy code from whole template and paste it here.

PS. Please paste it inside code tags Wink Big Grin
(2018-01-14, 12:20 AM)Ikerepc Wrote: [ -> ]Here, so we can see what you have inside. Copy code from whole template and paste it here.

PS. Please paste it inside code tags Wink Big Grin

<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function($){ 
$(".forumbit_subforums").each(function () {
 if($(this).length){
  $(this).parents(".rowbit").find("a[data-subforum]").addClass("smalltext").attr("data-subforum", "true");
 }
}); 
});
</script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
var jq1111 = jQuery.noConflict();
</script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>
var jq172 = jQuery.noConflict();
</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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" />

<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,700" rel="stylesheet"> 
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
<link href="{$mybb->settings['bburl']}/images/netpen/css/jquery.tipsy.css" rel="stylesheet" type="text/css" />

<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=1806"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/jquery.plugins.min.js?ver=1806"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/general.js?ver=1810"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/images/netpen/js/jquery.cookie.js"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/images/netpen/js/theme.js"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/images/netpen/js/share.js"></script>

{$stylesheets}<!-- UNREADPOSTS_CSS -->
<link href="{$mybb->settings['bburl']}/images/netpen/css/responsive.css" rel="stylesheet" type="text/css" />
<link href="{$mybb->settings['bburl']}/images/netpen/css/index.css" rel="stylesheet" type="text/css" />

<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 cookieSecureFlag = "{$mybb->settings['cookiesecureflag']}";
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='' />";
var modal_zindex = 9999;
// -->
</script>

<script type="text/javascript">
//ScrollToTop
jQuery(document).ready(function() {
    var offset = 100;
    var duration = 250;
    jQuery(window).scroll(function() {
        if (jQuery(this).scrollTop() > offset) {
            jQuery(".scrolltotop").fadeIn(duration);
        } else {
            jQuery(".scrolltotop").fadeOut(duration);
        }
    });
    
    jQuery('.scrolltotop').click(function(event) {
        event.preventDefault();
        jQuery('html, body').animate({scrollTop: 0}, 600);
        return false;
    })
});
</script>{$myalerts_js}
NetPen theme is using multiple scripts for achieving responsiveness & other features.
Theme Coder was suggested to avoid multiple Jquery scripts. Theme is yet to be optimized.

test user account can be posted at this thread.
there are many helpers. someone will try to check & help.

if temporary admin account &
files access
required then you can provide through PM.

[email protected] mails reach a couple of higher level
Staff members. it should not be used for general support.