How can I remove the branding from the bottom of the tinymce editor where it says 'Powered by TinyMCE'?
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.
remove() tinymce. destroy() tinymce. execCommand('mceRemoveControl',true,'. editable');
if you have only one editorinstance at your page you may use tinymce. editors[0]. hide(); too.
Initialize the editor as follows:
tinymce.init({ selector: '#tinymce', branding: false });
tinymce branding property allow you to enable or disable the "Powered by TinyMCE" branding.
tinymce.init({ branding: false // To disable "Powered by TinyMCE" });
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With