Is it possible to limit the opportunities in the "TinyMCE" WYSIWYG editor, so the user is limited to a few opportunities according to the design?
BTW This is the only CMS i really like! Thanks alot!
Limit
Limit
There are other themes that come with the standard TinyMCE distribution. I just used the advanced theme and cut the rest to save some space on the default distribution. It would be very easy to grab TinyMCE, copy over the basic (or whatever it's called) theme from it, and then change the theme type in TinyMCE.module.php.
-
- Forum Members
- Posts: 44
- Joined: Wed Oct 12, 2005 8:50 pm
Re: Limit
Search for this:
Just cut out the bits you don't want. eg "emotions".
It seems to be working ok for me. I was just searching for the same thing and got the idea while looking at the TinyMCE.module.php file - after readaing Wishy's advice
Code: Select all
theme : "advanced",
theme_advanced_toolbar_location : "top",
verify_html : "false",
verify_css_classes : "false",
plugins : "table,advhr,advlink,emotions,iespell,insertdatetime,preview,zoom,flash,ibrowser",
theme_advanced_buttons1_add : "fontselect,fontsizeselect,forecolor",
theme_advanced_buttons2_add_before: "cut,copy,paste,separator",
theme_advanced_buttons2_add : "separator,insertdate,inserttime,zoom",
theme_advanced_buttons3_add : "tablecontrols,emotions,iespell,flash,advlink,advhr,ibrowser",
It seems to be working ok for me. I was just searching for the same thing and got the idea while looking at the TinyMCE.module.php file - after readaing Wishy's advice