Dude you are awesome.
Thank you so much.
A couple of things: The counts are gone but now the bullets are layered over the names of the forums. Is there a way to leave the main theme’s bullets alone but in the Forum bbPress reverts to generic bullet points that it’s compatible with?
Also I must have made a mistake with the breadcrumb code.
// Custom breadcrumb label for bbPress
function my_change_forum_root_breadcrumb_title( $args = array() ) {
if ( ! empty( $args ) ) {
$args['root_text'] = 'The EcoPsi Forums';
}
return $args;
}
add_filter( 'bbp_before_get_breadcrumb_parse_args', 'my_change_forum_root_breadcrumb_title' );