MyBB Community Forums

Full Version: Post Editor
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My friend was helping me edit templates but now my post editor is gone. Does anyone know which template the post editor is under?
can you elaborate the problem - may be better to post a screenshot ...
http://i44.tinypic.com/242hb42.png

like this, the gray post editor with the buttons that allow you to bold, change text size, etc is gone
What's your forum's URL?
first check if the mycode editor is turned ON at
admin panel --> configuration --> settings --> Clickable Smilies and BB Code
--> Clickable MyCode Editor <-- On AND Clickable Smilies Inserter <-- On

then also check at your user control panel --> edit options -->
Other Options --> Show the MyCode formatting options on the posting pages ...
This has nothing to do with the Merge System.
Moved
http://horse-rpg.com

I have the code editor turned on, still no luck.
Its jQuery conflict.

Add the following code in your ACP > templates > Ungrouped Templates > headerinclude template.
<script type="text/javascript">jQuery.noConflict();</script>

If it still doesn't work then Go to: ACP > Templates > Header templates > header > and find;
<script type="text/javascript" src="/jscripts/jquery.js"></script>
<script type="text/javascript"> 
$(document).ready(function(){
$(".flip").click(function(){
    $(".panel").slideToggle("slow");
  });
});
</script>
and Change it into;
<script type="text/javascript" src="/jscripts/jquery.js"></script>
<script type="text/javascript"> 
jQuery.noConflict();
jQuery(document).ready(function($){
$(".flip").click(function(){
    $(".panel").slideToggle("slow");
  });
});
</script>
omg that worked o__o

THANKYOU! It's all fixed