But then I found this: http://forum.graphene-theme.com/graphene-support/how-to-hide-breadcrumb-on-home-page-only/page/2
Where in functions.php I place this code so breadcrumb navxt will be disabled for home page?
<?php
/******
* these next two remove the graphene breadcrumb and then add one
* which does not appear on the home page
*****/
// has to be called after the action is added
add_action (‘after_setup_theme’, ‘wmrt_remove_graphene_bc’);
function wmrt_remove_graphene_bc() {
remove_action (‘graphene_top_content’, ‘graphene_breadcrumb_navxt’);
}
add_action(‘graphene_top_content’, ‘wmrt_breadcrumb_navxt’);
function wmrt_breadcrumb_navxt () {
//by calling this at this point is_home() works!
if ((function_exists(‘bcn_display’)) && (!(is_home()))) {
echo ‘<div class=”breadcrumb”>’;
bcn_display();
echo ‘</div>’;
}
}
?>