Replies: 0
Hello,
after testing Astra and Ocean Wp, I found that Neve is just the perfect theme for my needs. Really a great theme!!
I am now trying to disable breadcrumbs and came across this code in your documentation:
function hide_breadcrumbs_on_certain_page( $input ) {
if( is_shop() ) {
return false;
}
return $input;
}
add_filter( 'neve_show_breadcrumbs', 'hide_breadcrumbs_on_certain_page', 10, 1 );
Added it to my childtheme’s functions, but it has no effect. Also, I dont want to remove the breadcrumbs from specific pages but from all pages.
What am I doing wrong?