bbPress & tinyMCE
-
Hello!
I’m having some issues styling the buttons in the bbPress Topics/Forum section. My website contains a large amount of TinyMCE editors — some need specific styles and buttons. Assigning this was very easy to my custom editors, but I’m facing an issue when trying to customize the bbpress editor. None of the code I found in the forums seems to do anything to the buttons.
Here is a snipped of how I’m modifying my other editors. Since these are custom, Is easy to modify by just adding the parameters.
wp_editor( $options['callout_body'], 'callout_body’, //ID OF EDITOR array( 'textarea_name' => 'page_options_employer_guide_thrive_overview[callout_body]', 'media_buttons' => false, 'textarea_rows' => 8, 'tabindex' => 4, 'quicktags' => false, 'tinymce' => array( 'toolbar1'=> 'bold,italic', 'toolbar2'=> '', 'toolbar3'=> '', ), ) );
The buttons that I need displayed in the bbpress editor are different from any other custom post type or options page editor.
I’ve tried every snippet I could find in the forums with no luck, no change. I tried to hook to the examples and add filters, with no luck as well.
I hope I’m clear enough to what I’m trying to achieve.
Thanks
- You must be logged in to reply to this topic.