Bread crumbs and quantity of goods
-
Hi, how can I turn off the breadcrumbs category and the number of products on the page?
Attachments:
You must be
logged in to view attached files.
Hello,
In order to remove the breadcrumbs and quantity of goods, try to add this code to the functions.php file in your child theme.
if ( ! function_exists('xts_remove_content_after_page_title') ) {
function xts_remove_content_after_page_title() {
remove_action( 'xts_before_site_content_container', 'xts_custom_content_after_page_title', 20 );
}
add_action('wp', 'xts_remove_content_after_page_title', 200);
}
Kind Regards