MyBB Community Forums

Full Version: TinyMCE Black Edition
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I installed the TinyMCE plugin and all is working well except for on odd thing. When you click to edit posts TinyMCE shows up twice and only the second one actually edits posts. Would anyone have a clue how I would correct this to where TinyMCE only shows once?

Thanks
I discovered from a older thread that this version didn't modify the codebuttons template and that's why the editor was showing up twice.

Now my question is how to get clickable smiles back and the get more link working. I tried the code from the older thread in the codebuttons template and it didn't work, so I guess the code needs updating but I'm not sure what to update.

<script language="javascript" type="text/javascript" src="tinymce/tiny_mce.js"></script>
<script language="javascript" type="text/javascript">
tinyMCE.init({
    mode : "textareas"
});
</script>
<!--<script type="text/javascript" src="jscripts/editor.js?ver=121"></script>
<script type="text/javascript">
    {$editor_language}
    var clickableEditor = new messageEditor("message", {lang: editor_language, rtl: {$lang->settings['rtl']}});
    clickableEditor.bindSmilieInserter("clickable_smilies");
</script>-->

Does anyone have any ideas about this?