MyBB Community Forums

Full Version: fix my editor it does not apear when creating threads or in usecp signature?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
In my other themes im able to see message editor but in the one i created i cannot figure it out why is missing even in both sides even on usercp signature or when creating threads any idea?

Signature
[Image: 7EHT1aG.png]

When New Thread:
[Image: OqsvYYw.png]
are you using jQuery ? if the theme is available on a live forum then give test user account
it was on headerinclude.

I had no idea it could messed up like that i just wanted to added something to link somewhere else.
^ if you are using jQuery then take precaution that it doesn't conflict with prototype javascript used in MyBB

one such precaution is to use no conflict code just after loading jQuery
<script type="text/javascript">jQuery.noConflict();</script>
<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>
{$stylesheets}
<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}

 <!-- tooltip  -->

<link rel="stylesheet" type="text/css" href="jscripts/tipTip.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="jscripts/jquery.tipTip.js"></script>
<script type="text/javascript" src="jscripts/jquery.tipTip.minified.js"></script>
<script type='text/javascript'> 
jQuery.noConflict();
jQuery(function() {
jQuery("a").tipTip({maxWidth: "auto", edgeOffset: 10,gravity: 'n'});
jQuery("img").tipTip({maxWidth: "auto", edgeOffset: 10,gravity: 'n'});
  });
</script>


 <!-- profile tabs -->

<link rel="stylesheet" type="text/css" href="jscripts/tabs/jquery-ui.css">
<script src="jscripts/tabs/jquery-1.9.1.js"></script>
 <script src="jscripts/tabs/jquery-ui.js"></script>

Here is my code can you take some time and fix it yourself i cant figure out if i leave it like this the css it works and the javascript and i only have problem with the editor i dont know how it would not work.

If you want if you dont want its okSmile