How to replace dropdown on template plugin to buttons in tinymce 5?

158 Views Asked by At

I tried to duplicate the template plugin folders and I want to have the dropdown replaced with buttons.

replacing the dropdown into buttons

1

There are 1 best solutions below

1
On

The question Lacks enough context but TintMCE Has documentation which answers your question (As I understand it) here enter link description here

Also depends on which plugins you want etc

Edit: Add options to TinyMCE int he init like so:

tinymce.init({
  selector: 'textarea',
  plugins: 'link image table',
  contextmenu: 'link image table'
});