How to remove the “Assets” Button in TinyMCE / Wysiwyg Editor? My options JSON:
{
tinymce: {
toolbar: 'bold italic link',
},
}
I don’t understand why the “Assets” button is still showing.
Thanks
How to remove the “Assets” Button in TinyMCE / Wysiwyg Editor? My options JSON:
{
tinymce: {
toolbar: 'bold italic link',
},
}
I don’t understand why the “Assets” button is still showing.
Thanks
try
{
tinymce: {
assetsPicker: false
}
}
Thanks @artur but it doesn’t seem to have any effect
{
tinymce: {
toolbar: 'bold italic link',
assetsPicker: false,
},
}
Assets button still remains
I see, since the latest update of tinymce the don’t attach the settings to the editor instance anymore.
A fix is already in the dev branch. You can get the latest dev release here