Quantcast
Channel: bbPress.org » All Posts
Viewing all articles
Browse latest Browse all 3638

Reply To: Remove specific buttons from TinyMCE

$
0
0

Done. Thank you anyway 🙂

Here goes the correct code for who might be interested:

function bbp_enable_visual_editor( $args = array() ) {
$args['tinymce'] = true;
$args['teeny'] = false;
$args['tinymce'] = array(
'toolbar1' =>'bold, italic, blockquote',
);
return $args;
}
add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );

Viewing all articles
Browse latest Browse all 3638

Trending Articles