Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove POWERED BY TINY from TinyMce web component editor

Tags:

tinymce

I am using TinyMce web component editor, i have put my API key as well. But still getting branding "POWERED BY TINY".

Code as below:-

<tinymce-editor branding="false" id="editor" height="150" resize="false" menubar="false">
                      This will be the initial content of the editor
</tinymce-editor>

branding ="false" also not working.

like image 475
Chandan Kumar Avatar asked May 08 '26 02:05

Chandan Kumar


1 Answers

For newer versions (5 or above) use branding: false in the following manner:

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

There is also an option promotion: false to remove the Upgrade button in the top right.

like image 99
Rohit kumar dubey Avatar answered May 11 '26 04:05

Rohit kumar dubey



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!