I’ll introduce how to hide the text “POWERED BY TINY” from TinyMCE forms.
Background: Want to Hide "POWERED BY TINY"
I wanted to hide the text “POWERED BY TINY” displayed on TinyMCE forms, so I:
- Switched to a paid plan
- Modified the code
Prerequisites: TinyMCE Free Plan Uses LGPL License
As a prerequisite, TinyMCE’s free plan uses the LGPL license, so you must not hide “POWERED BY TINY” unless you switch to a paid plan.
- Reference: Logo & attribution requirements | Tiny
Sample Code to Hide "POWERED BY TINY"
tinymce.init({
branding: false // Hide "Powered by TinyMCE"
});
That’s all from the Gemba.