I have added tinymce to a plugin using this code
$settings = array(
'text_area_name'=>'the_data',
'tinymce' => true,
'media_buttons' => false,
);
wp_editor($initial_data, $id, $settings);
It works as expected producing this
I would like to edit the toolbars adding and removing tools, forcing the initially closed tool bar open, etc. Doing a search there are resources dating back 10 years and others related to ajax, but I can't seem to find anything for this situation.
I have tried various methods in the array, but none have worked so far.