• If you’re running into issues where you’re unable to interact with the media gallery while using the BB editor with this plugin active, you can use the below code in either a custom plugin or your theme’s functions.php to prevent this plugin from adding the embed script when the BB editor is active:

    add_action( 'plugins_loaded', 'bbcbox_maybe_unload_cbox' );
    function bbcbox_maybe_unload_cbox() {
    	if ( isset( $_GET['fl_builder'] ) ) {
    		remove_action( 'wp_head', 'convbox_head_script' );
    	}
    }
  • The topic ‘Beaver Builder compatibility’ is closed to new replies.