MyBB Community Forums

Full Version: Text editor doesn't show and smilies box doesn't work.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
- Forum: http://www.insanecomposition.net/forum
- Version: MyBB 1.6.6.
The text editor doesn't appear, I don't know why. It shows this way:
[Image: IQG6u.png]
The smilies box doesn't work too. It seems that are just images put in the template.

What is the solution? :/
That's jQuery ~ Prototype conflict.

Add the following code in your theme's "headerinclude" template;
<script type="text/javascript">jQuery.noConflict();</script>

That template can be found in: AdminCP > templates > Your theme's templates > Ungrouped Templates > headerinclude
Yeah, I tried putting that code, but it didn't work D;
You didn't pasted the code in headerinclude template. I've seen it in your page source and nothing there.
Yeah, because I tried with that code before o.o
But well, if you want to see it, it's placed now x)
Bring it down to the following code;
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.3/jquery-ui.min.js"></script>
Thanks for your help Yaldaram, but I discovered what was the error: I put a button on the editor so bad, that's because it didn't appear x)
Thanks a lot for your help Big Grin
Hey, I have a problem with the same: the text editor doesn't show and smilies box doesn't work.
I just installed the Coin Slider plugin, and it includes to your headerinclude the following code:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/coin_slider/coin-slider.min.js"></script>

So I have to go to the end of the template, and delete de jquery part.
Actually, the template is this way:
<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" /><!-- CoinSlider --><script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/coin_slider/coin-slider.min.js"></script>
<link rel="stylesheet" href="{$mybb->settings['bburl']}/jscripts/coin_slider/coin-slider.css" type="text/css" /><!-- /CoinSlider -->
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/prototype.js?ver=1600"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/general.js?ver=1600"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/popup_menu.js?ver=1600"></script>
{$ncoderesize_script}{$stylesheets}
<!--[if IE 7]>
<link type="text/css" rel="stylesheet" href="{$theme['imgdir']}/ie7.css" />
<![endif]-->
<link href='http://fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet' type='text/css'>
<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>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.3/jquery-ui.min.js"></script>
<script type="text/javascript">jQuery.noConflict();</script>
<script type="text/javascript" src="images/blockblue/jscripts/theme-js.js"></script>
 {$newpmmsg}

If I put the jquery part in their original site, the text editor works correctly, but the plugin fails. I want to have the slider, but I want the editor working correctly :/
There's a solution?