How to enable-visual-editor in BBPress
In bbPress 2.3.1, WordPress’s visual editor was defaulted to off. To turn it back on, try this code snippet in a plugin or your theme’s functions.php file:
function bbp_enable_visual_editor( $args = array() ) {
$args[‘tinymce’] = true;
return $args;
}
add_filter( ‘bbp_after_get_the_content_parse_args’, ‘bbp_enable_visual_editor’ );
Source: https://codex.bbpress.org/enable-visual-editor/