Skip to:
Content
Pages
Categories
Search
Top
Bottom

How can I Dequeue Bbpress Stylesheet

  • @kikismedia

    Participant

    Is there a snippet I can add to my theme function to disable the bbpress css style

Viewing 6 replies - 1 through 6 (of 6 total)
  • @robin-w

    Moderator

    wp_dequeue_script ('bbp-default') ;

    should do it

    @robin-w

    Moderator

    might be better as this to ensure it fires after bbpress has loaded

    add_action ('plugins_loaded' , 'rew_dequeue_bbpress_css' ) ;
    
    function rew_dequeue_bbpress_css () {
    	wp_dequeue_script ('bbp-default') ;
    }

    @kikismedia

    Participant

    After adding it to my function nothing change the css is still instact

    @robin-w

    Moderator

    this works on my test site

    add_filter( 'bbp_default_styles', 'rew_dequeue_bbpress_css' ) ;
    
    function rew_dequeue_bbpress_css ($defaults ){
    unset ($defaults['bbp-default']) ;
    return $defaults ;
    }

    @kikismedia

    Participant

    Thanks that’s worked

    @robin-w

    Moderator

    great – glad you are fixed

Viewing 6 replies - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.
Skip to toolbar