Search code examples
tinymce

How do I remove the branding from tinymce? (Where it says 'Powered by tinymce')


How can I remove the branding from the bottom of the tinymce editor where it says 'Powered by TinyMCE'?


Solution

  • Initialize the editor as follows:

    tinymce.init({
        selector: '#tinymce',
        branding: false
    });
    

    With the react integration you can initialize as follows:

    <Editor     
      apiKey={TinyMCE_API_Key}
      initialValue={initialValue}
      init={{
        branding: false
      }} 
        
      onEditorChange={handleEditorChange}
    />