Breadcumbs disable in product page only
-
Breadcumbs disable in product page only, please help.
Hello,
In order to remove breadcrumbs on the product page, try to add this code to the functions.php file in your child theme.
if ( ! function_exists('xts_remove_single_breadcrumbs') ) {
function xts_remove_single_breadcrumbs() {
remove_action( 'woocommerce_before_single_product_summary', 'xts_single_product_breadcrumbs', 10 );
}
add_action('wp', 'xts_remove_single_breadcrumbs', 200);
}
Kind Regards