Many do not want there users to be able to use or see the html button in the various editors.
This can be removed very easy with 1 line of code.
The Dolphin part is very easy if you want to remove it from the Orca editor as well you will have to follow along a little closer and pay a little more attention. It requires editing a specific file and then compiling/recompiling the Orca Language file.
The dolphin part:
Download / Backup the original file:
yoursite.com/templates/base/scripts/BxBaseConfig.php
Find the very first reference area to TinyMce area:
tinyMCE.init({
mode : "textareas",
theme : "advanced",
//content_css : "' . $site['css_dir'] . 'editor.css",
editor_selector :
"blogText|guestbookTextArea|story_edit_area|comment_textarea|classfiedsTextArea",
Add the following code:
theme_advanced_disable : "code",
Between:
theme_advanced_path_location : "bottom",
plugi2n_insertdate_dateFormat : "%Y-%m-%d",
Like:
theme_advanced_path_location : "bottom",
theme_advanced_disable : "code",
plugi2n_insertdate_dateFormat : "%Y-%m-%d",,
Save file and reupload overwriting original.
That's it for the Dolphin part.
Refresh page to see changes.
The orca part:
Download/Backup the original:
yoursite.com/orca/layout/base/xsl/canvas_init.xsl
Find the referrence to incyMce are after:
tinyMCE.init({
entity_encoding : "raw",
mode : "exact",
elements : "tinyEditor",
Add the following code:
theme_advanced_disable : "code",
Between:
theme_advanced_path_location : "bottom",
plugin_insertdate_dateFormat : "%Y-%m-%d",
Like:
theme_advanced_path_location : "bottom",
theme_advanced_disable : "code",
plugin_insertdate_dateFormat : "%Y-%m-%d",
Save file and reupload overwritting original. (must be in /base/xsl/canvas_init.xsl)
Then you MUST go to your admin panel...Plugins...Orca Forum...
And Click on the little "en" to Compile Languages for the changes you just made to happen.
Note: Orca sometimes you have to close your browser completely out and come back to it to verify the changes happened with certain browsers and settings.
Groups: I am not using groups at the moment, but if you do you may want to the same to:
/groups/orca/layout/base/xsl/canvas_init.xsl