Skip to content

Fix bbPress html visual editor not showing after bbPress 2.6.8 upgrade

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #213813
    Admin
    Administrator

    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' );
    }
Viewing 1 post (of 1 total)
  • You must be logged in to reply to this topic.