Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Jummy-Jackson 1 post 71 karma points
    Nov 11, 2020 @ 15:13
    Jummy-Jackson
    0

    Tiny MCE

    I have a problem in extending umbraco RTE, Tiny MCE, the tiny MCE should be include with non premium plugins

  • Marc Goodson 2157 posts 14434 karma points MVP 9x c-trib
    Nov 11, 2020 @ 18:40
    Marc Goodson
    0

    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

  • Aswatghi ES 2 posts 73 karma points
    Nov 12, 2020 @ 10:24
    Aswatghi ES
    1

    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>
    
  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies