Viewing 1 replies (of 1 total)
  • Plugin Author Jared Atchison

    (@jaredatch)

    The plugin only covers the basic locations. Theme’s that have moved things around have to be manually accomodated for.

    In this case, you would need to put a snippet like this inside your child theme’s functions.php file.

    function ja_remove_breadcumbs() {
    	if ( is_bbpress() ) {
    		remove_action( 'genesis_before_loop', 'genesis_do_breadcrumbs' );
    	}
    }
    add_action(  'genesis_before',  'ja_remove_breadcumbs'  );

    Hope that helps!

Viewing 1 replies (of 1 total)
  • The topic ‘Breadcrumbs showing just on forums’ is closed to new replies.