MyBB Community Forums

Full Version: Codebuttons Missing (Help Please)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: 1rad8]

Need to figure out how to get them back, or how to make them display again.

Any help is wanted, I will provide a test account and any codes if needed.

Website: www.wasdgamers.com

headerinclude:
<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="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript" language="javascript">jQuery.noConflict();</script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/audentio/citrus/functions.js" /></script>
<script type="text/javascript" language="javascript">jQuery.noConflict();</script>
<noscript data-css="{$mybb->settings['bburl']}/jscripts/audentio/citrus/css.php" id="cssColors"><link type="text/css" rel="stylesheet" href="{$mybb->settings['bburl']}/jscripts/audentio/citrus/css.php" /></noscript>

<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>

<!-- Start VideoLightBox.com HEAD section -->
        <link rel="stylesheet" href="youtube_videolb/videolightbox.css" type="text/css" />
        
            <link rel="stylesheet" type="text/css" href="youtube_videolb/overlay-minimal.css"/>
            <script src="youtube_videolb/jquery.js" type="text/javascript"></script>
            <script src="youtube_videolb/swfobject.js" type="text/javascript"></script
<!-- End VideoLightBox.com HEAD section -->{$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}
http://www.wasdgamers.com/usercp.php?action=options
Other Options > Show the MyCode formatting options on the posting pages.
In the headerinclude, find this line:

<script src="youtube_videolb/jquery.js" type="text/javascript"></script>

Add after it:

jQuery.noConflict();

See if that helps at all.
Thanks for the reply tamnguyen949 but it is checked.

And thanks euantor I actually noticed what was wrong, previously I entered the template to remove a PM bit, little did I know I took out a bracket leaving the javascript declaration open as well.

Problem solved. Big Grin

Edit: Also added the
<script type="text/javascript" language="javascript">jQuery.noConflict();</script>
under each jQuery which I believe helped as well. If not fixed it.