Home › Forums › Space themes support forum › Bread crumbs and quantity of goods › Reply To: Bread crumbs and quantity of goods
October 22, 2021 at 12:52 pm
#326990
Luke Nielsen
Keymaster
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