'How to remove POWERED BY TINY from TinyMce web component editor

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.



Solution 1:[1]

Just so you're aware removing the branding is a paid feature of TinyMCE.

The branding setting of TinyMCE is not one of the built-in attributes that the webcomponent supports but as with any attribute you can still set it via the escape hatch of declaring a object globally in Javascript and then referencing the name.

<script>window.myConfig = { branding: false };</script>
<tinymce-editor id="editor" height="150" resize="false" menubar="false" config="myConfig">
This will be the initial content of the editor
</tinymce-editor>

https://www.tiny.cloud/docs/integrations/webcomponent/#settingadditionalconfigurationoptions

Solution 2:[2]

Via init() function:

        tinymce.init({
...
            statusbar: 'false',
...
        });

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 James Johnson
Solution 2