Skip to:
Content
Pages
Categories
Search
Top
Bottom

How to disable / prevent bbpress compatibility mode stylesheet to load?


  • Laughing Cat
    Participant

    @laughing-cat

    I want to deregister the default stylesheet that bbpress load when in compatibility theme mode

    I tried with wp_deregister_style( ‘bbp-default-bbpress-css’ ) which is what I see in the header… but I think I need to filter something or remove an action

    is this documented?

    thank you

Viewing 1 replies (of 1 total)

  • Laughing Cat
    Participant

    @laughing-cat

    ok found a solution

    function my_custom_bbp_stylesheet(){
    
        wp_deregister_style( 'bbp-default-bbpress' );
        wp_enqueue_style( 'bbp-default-bbpress', get_stylesheet_directory_uri() . 'mystylesheet.css' );
    
    }
    add_action( 'bbp_enqueue_scripts', 'my_custom_bbp_stylesheet' );
    
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.
Skip to toolbar