Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter manheim

    (@jasonmanheim)

    Interestingly, if I add:

    //* Remove bbPress descriptions...
    add_action( 'genesis_before', 'dpx_remove_bbpress_descriptions' );
    function dpx_remove_bbpress_descriptions() {
    
    	add_filter( 'bbp_get_single_forum_description', '__return_false' );
    	add_filter( 'bbp_get_single_topic_description', '__return_false' );
    
    }

    …to my functions file it works. Isn’t this exactly what the plugin is doing?

    Thread Starter manheim

    (@jasonmanheim)

    Ah, when the filters are wrapped in the is_bbpress() check it doesn’t work…

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Forum and Topic descriptions filter not working…’ is closed to new replies.