skip to Main Content

I am using tinymce in inline mode and am new to the tool.
I’ve gotten my text field input to look how I want with minimal editing buttons.
However, I am stumped on how to remove the "Upgrade" button from the toolbar when the text field is active.

enter image description here

Is this even possible?

Here is the initialization that I am using.
I am using a self-hosted community installation on a WAMP server.

`

<script>
    tinymce.init({
        selector: '#addressinput',
        inline: true,
        toolbar: 'bold underline italic superscript',
        menubar: '',
        branding: false,
        force_br_newlines : true,
        min_height: 100
    });
</script>

`

2

Answers


  1. The TinyMCE Docs include instructions for turning the Premium Upgrade Promotion Option off.

    Login or Signup to reply.
  2. The above link^ to the Docs explains the step involved. Essentially, the following will disable the upgrade item:

    tinymce.init({
    //other configuration,
    promotion: false
    });
    
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search