Add this code to your theme Function file to fix bbPress html visual editor not showing after bbPress 2.6.8 upgrade
// fix bbpress editor not showing if( !function_exists( 'bbpress_browser_supports_js' ) ){ function bbpress_browser_supports_js() { echo ''; } add_action( 'wp_footer', 'bbpress_browser_supports_js' ); }