I’ll introduce how to hide the text “POWERED BY TINY” from TinyMCE forms.
I wanted to hide the text “POWERED BY TINY” displayed on TinyMCE forms, so I:
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.
tinymce.init({
branding: false // Hide "Powered by TinyMCE"
});
That’s all from the Gemba.