Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

tinymce

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

like image 401
ykay says Reinstate Monica Avatar asked May 23 '17 11:05

ykay says Reinstate Monica


People also ask

How do I remove TinyMCE status bar?

statusbar. This option allows you to specify whether or not TinyMCE should display the status bar at the bottom of the editor. To disable the status bar, the statusbar option should be provided with a boolean false value.

How do I remove TinyMCE from textarea?

remove() tinymce. destroy() tinymce. execCommand('mceRemoveControl',true,'. editable');

How do you hide editor in TinyMCE?

if you have only one editorinstance at your page you may use tinymce. editors[0]. hide(); too.


2 Answers

Initialize the editor as follows:

tinymce.init({             selector: '#tinymce',             branding: false         }); 
like image 106
ykay says Reinstate Monica Avatar answered Sep 22 '22 05:09

ykay says Reinstate Monica


tinymce branding property allow you to enable or disable the "Powered by TinyMCE" branding.

tinymce.init({   branding: false // To disable "Powered by TinyMCE" }); 
like image 42
anasmorahhib Avatar answered Sep 21 '22 05:09

anasmorahhib