Manhag,
The next step in the tinymce integration into FB makes tinyMCE editor appear in the Fireboard "post" screen.
1. open /com_fireboard/templates/default/smile.class.php
2. find the lines (brackets stripped):
| Code: |
td valign = "top" div id = "fb-rightcolpost"
textarea class = "..."
|
and replace the text inside the " " with "mceEditor"
3. You might want to comment out the sections in smile.class.php that load up the Boardcode table row, and the emoticons, since tinyMCE has its own (worse-looking if you ask me).
What you just did was link the post textarea to the tinyMCE init you put into your index.php:
| Code: |
mode : "specific_textareas",
editor_selector : "mceEditor"
|
You can create multiple tinyMCE layouts using different selectors. I can show you how to do that if you want a 'simple' tinyMCE to load in quickreply, for instance.
Now you should have tinyMCE running as a front but bbcode is still behind and you're likely to encounter all kinds of formatting issues so you may just have to do those changes and send me a link so we can troubleshoot your specific problems.
Good luck,
Gom