MyBB Community Forums

Full Version: Smilies not Clickable, no text editor.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I recently noticed that my forum's smilies were not clickable in things like New Replies, PM Replies, and also the Bold, Italic, Underline and so on editor options did not appear either.

I am sure this has happened fairly recently, possible conflicting jQuery?

Would appreciate some advice.
most probably conflicting jQuery !! (eg. solution)
Easy fix ranjani?
My current hinclude looks a bit messy, will give it a shot

<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=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>
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript">
    jQuery.noConflict();
    jQuery(document).ready(function(){
        jQuery(".post_buttons img").fadeTo("fast", 0.5);
        jQuery(".post_buttons img").hover(function(){
            jQuery(this).fadeTo("fast", 1.0);
    },function(){
            jQuery(this).fadeTo("fast", 0.5);
    });
    });
</script>



<script type="text/javascript" src="http://ajax.googleapis.com/ajax/
libs/jquery/1.3.0/jquery.min.js"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/thumbspostrating.js?ver=1600"></script><link type="text/css" rel="stylesheet" href="{$mybb->settings['bburl']}/css/thumbspostrating.css" />{$stylesheets}
<script type="text/javascript">
jQuery.noConflict();

 jQuery(function($) {
	$(".tekst").click(function(e){
		// eo.preventDefault() lo que conseguimos en este caso es que el link no lleve a ningún sitio, 
		// simplemente se ejecutará el código Javascript contenido para el evento click.
		e.preventDefault();
		$("#paneluser").toggle();
		$(".tekst").toggleClass();
	});
	$("body #main").click(function(){
		$("#paneluser").hide();
		return false;
	});
});
</script>
<script type="text/javascript">
jQuery.noConflict();

 jQuery(function($) {
	$(".tekst").click(function(e){
		// eo.preventDefault() lo que conseguimos en este caso es que el link no lleve a ningún sitio, 
		// simplemente se ejecutará el código Javascript contenido para el evento click.
		e.preventDefault();
		$("#paneluser2").toggle();
		$(".tekst").toggleClass();
	});
	$("body #main").click(function(){
		$("#paneluser2").hide();
		return false;
	});
});
</script>
<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}
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/tabcontent.js">
/***********************************************
* Tab Content script v2.2- copyright Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/
</script>
multiple inclusions of jQuery script loading should be removed AND along with that
<script type="text/javascript">jQuery.noConflict();</script> may be added
once at the bottom of headerinclude template ...
I did reverted back to default and added in as you said, still not working.

<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 type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></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}
<script type="text/javascript">jQuery.noConflict();</script>
^ oh! as you reverted back the template , now jQuery noconflict needs to be immeadiately after
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>

Edit : it is found that the issue is caused by ajax shoutbox plugin