• Hey! Thank you again for a truly helpful plugin.

    Wysiwyg custom fields created with Pods Framework, has the following toolbar when MRW is activated.

    I was previously using a custom plugin configured to hide even more buttons, resulting in this:

    This was achieved by passing this to the plugin.

    function pix_extended_editor_mce_buttons($buttons) {
      return array(
    	"undo", "redo",
    	"bold", "italic",
    	"bullist", "numlist",
    	"link", "unlink",
    	"removeformat");
    }

    Would it be possible to filter the TinyMCE buttons available using MRW Simplified Editor to achieve this result?

Viewing 1 replies (of 1 total)
  • Plugin Author mrwweb

    (@mrwweb)

    My guess is that Pods applies the default TinyMCE filters under the hood and so the plugin is “working” and probably overriding your customizations.

    I don’t know if this will work, but I would try applying your function as a filter directly to the TinyMCE button filters:

    add_filter( 'mce_buttons', 'pix_extended_editor_mce_buttons' );

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.