MyBB Community Forums

Full Version: MyCode Not showing up!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
When i make a new post/thread, the mycode editor does not show up?

Why is this?

Example: http://prntscr.com/3fdxcl
You probably mean NOT showing up?

Common solutions (try searching the forums for more)

Check that your template is including the editor - variable {$codebuttons}
If using jQuery make sure it is in No_Conflict mode
If you are using Cloudflare turn off rocketloader
(2014-05-02, 08:22 AM)Leefish Wrote: [ -> ]You probably mean NOT showing up?

Common solutions (try searching the forums for more)

Check that your template is including the editor - variable {$codebuttons}
If using jQuery make sure it is in No_Conflict mode
If you are using Cloudflare turn off rocketloader

Can you tell me how to of each of those
There was once that I installed a plugin and than the BBCode bar did not show up. I than deactivated the plugin and than it show up again. Try deactivate recent installed plugin(s) and see if it show up.
This has been a problem before i installed plugins.
If you are using jQuery you should know about it. Check your headerinclude for jQuery. Same for cloudflare and rocket loader - you should know.

I am not going to outline every possible variation - you have to do somethings yourself.
(2014-05-02, 08:49 AM)Leefish Wrote: [ -> ]If you are using jQuery you should know about it. Check your headerinclude for jQuery. Same for cloudflare and rocket loader - you should know.

I am not going to outline every possible variation - you have to do somethings yourself.

Im not using jQuery.

Can you help me further? What template should i be editing with the code buttons?
Please post the contents of your newthread template.

But first - go to Home » Board Settings > Clickable Smilies and BB Code

Confirm that you have the option Clickable MyCode Editor set to ON
(2014-05-02, 01:32 PM)Leefish Wrote: [ -> ]Please post the contents of your newthread template.

But first - go to Home » Board Settings > Clickable Smilies and BB Code

Confirm that you have the option Clickable MyCode Editor set to ON

<html>
<head>
<title>{$lang->newthread_in}</title>
{$headerinclude}
<script type="text/javascript" src="jscripts/post.js?ver=1400"></script>
</head>
<body>
{$header}
{$preview}
{$thread_errors}
{$attacherror}
<form action="newthread.php?fid={$fid}&amp;processed=1" method="post" enctype="multipart/form-data" name="input">
<input type="hidden" name="my_post_key" value="{$mybb->post_code}" />
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" colspan="2"><strong>{$lang->post_new_thread}</strong></td>
</tr>
{$loginbox}
<tr>
<td class="trow2" width="20%"><strong>{$lang->thread_subject}</strong></td>
<td class="trow2">{$prefixselect}<input type="text" class="textbox" name="subject" size="40" maxlength="85" value="{$subject}" tabindex="1" /></td>
</tr>
{$posticons}
<tr>
<td class="trow2" valign="top"><strong>{$lang->your_message}</strong>{$smilieinserter}</td>
<td class="trow2">
<textarea name="message" id="message" rows="20" cols="70" tabindex="2">{$message}</textarea>
{$codebuttons}
{$multiquote_external}
</td>
</tr>
<tr>
<td class="trow1" valign="top"><strong>{$lang->post_options}</strong></td>
<td class="trow1"><span class="smalltext">
{$option_signature}
{$disablesmilies}</span></td>
</tr>
{$modoptions}
{$subscriptionmethod}
{$pollbox}
{$captcha}
</table>
{$attachbox}
<br />
<div style="text-align:center"><input type="submit" class="button" name="submit" value="{$lang->post_thread}" tabindex="4" accesskey="s" />  <input type="submit" class="button" name="previewpost" value="{$lang->preview_post}" tabindex="5" />{$savedraftbutton}</div>
<input type="hidden" name="action" value="do_newthread" />
<input type="hidden" name="posthash" value="{$posthash}" />
<input type="hidden" name="attachmentaid" value="" />
<input type="hidden" name="attachmentact" value="" />
<input type="hidden" name="quoted_ids" value="{$quoted_ids}" />
<input type="hidden" name="tid" value="{$tid}" />
{$editdraftpid}
</form>
{$forumrules}
{$footer}
</body>
</html>
Any help with this?
Pages: 1 2