MyBB Community Forums

Full Version: Missing Default Editor on custom skin
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So we've built a webpage, but strangely enough our Mybb Editor (the Default one) isn't on the new skin. Its on the default skin, but not on the new skin, our skinner built.

Apparently the default code is there, but not the actual editor- when you go to editor the post, suggestions on how to fix this?

If we changed back to the default skin it shows up thought.

http://kingsvagabonds.ariarpg.com

We're using Mybb 1.6.10
Navigate to ACP > Templates & Style> Themes> YOUR THEME> What does it say for Editor Style?
It says 'Default' we have one that also reads '2007'.
Add

{codebuttons} 


After

<textarea name="message" id="message" rows="20" cols="70" tabindex="2">{$message}</textarea>

In newthread and newreply templates.
That's already there, in both those places.
Try changing editor style from default to office 2007.
Nope, no luck still. Its still not showing up.
Reupload the codebuttons folder to .images/YOUR THEME from a fresh copy of MyBB.
your forum is loading jQuery and it requires no conflict code

find where you had included jQuery - it is like below on your forum source
<head><script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js'></script></head>

you can add no conflict code like below (immediately after the jQuery script)
<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js'></script>
<script type="text/javascript">jQuery.noConflict();</script>