-1

I have to remove some buttons from the tinyMCE 5 Editor.

enter image description here

How can I control which buttons are being shown?

I can't find anything in the documentation.

This is my init code:

tinymce.init({
    selector: 'textarea.property_remark'
    ,branding: true
    ,menubar: false
    ,statusbar: true
    ,toolbar: true
});
Black
  • 18,150
  • 39
  • 158
  • 271

2 Answers2

0

I found it here

tinymce.init({
    selector: 'textarea.property_remark'
    ,branding: true
    ,menubar: false
    ,statusbar: true
    ,toolbar: 'undo redo | styleselect | bold italic | link image'
});

enter image description here

Black
  • 18,150
  • 39
  • 158
  • 271
0

In order to use certain toolbar buttons or menu options you need to load some plugins. check this link