Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
I have a problem in extending umbraco RTE, Tiny MCE, the tiny MCE should be include with non premium plugins
Hi Jummy-Jackson
What extensions are you trying to make to TinyMce?
There is some general information here that might help:
https://our.umbraco.com/Documentation/Reference/Config/tinyMceConfig/
about how to extend TinyMce in Umbraco via the /config/tinymce.config file.
but is there something particular you are trying to do?
regards
Marc
If you want to extend the Tiny MCE features, just go to its config file and update with the required changes
For example : If you want to add a colour picker or font size, just add two lines in the config file like
<?xml version="1.0" encoding="utf-8"?> <tinymceConfig> <commands> <command alias="ace" name="Source code editor" mode="Insert" /> - - <command alias="forecolor" name="Color" mode="Selection"/> <command alias="fontsizeselect" name="Size" mode="Selection"/> </commands> <plugins> <plugin>paste</plugin> - - <plugin>table</plugin> - - <plugin>textcolor</plugin> <plugin>colorpicker</plugin> </plugins> </tinymceConfig>
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Tiny MCE
I have a problem in extending umbraco RTE, Tiny MCE, the tiny MCE should be include with non premium plugins
Hi Jummy-Jackson
What extensions are you trying to make to TinyMce?
There is some general information here that might help:
https://our.umbraco.com/Documentation/Reference/Config/tinyMceConfig/
about how to extend TinyMce in Umbraco via the /config/tinymce.config file.
but is there something particular you are trying to do?
regards
Marc
If you want to extend the Tiny MCE features, just go to its config file and update with the required changes
For example : If you want to add a colour picker or font size, just add two lines in the config file like
is working on a reply...