Posts

Showing posts from November, 2017

BBPRess Visual Editor

Add this to theme functions.php file: //Enable Visual Editor for BBPress below function bbp_enable_visual_editor( $args = array() ) {     $args['tinymce'] = true;     $args['quicktags'] = false;     $args['teeny'] = false;     return $args; } add_filter( 'bbp_after_get_the_content_ parse_args', 'bbp_enable_visual_editor' ); //Enable Visual Editor for BBPress above