How to Hide TinyMCE 'POWERED BY TINY'

Tadashi Shigeoka ·  Tue, July 27, 2021

I’ll introduce how to hide the text “POWERED BY TINY” from TinyMCE forms.

TinyMCE

Background: Want to Hide "POWERED BY TINY"

I wanted to hide the text “POWERED BY TINY” displayed on TinyMCE forms, so I:

  1. Switched to a paid plan
  2. 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.

Sample Code to Hide "POWERED BY TINY"

tinymce.init({
  branding: false // Hide "Powered by TinyMCE"
});

That’s all from the Gemba.

Reference Information