Home Forums Space themes support forum Bread crumbs and quantity of goods Reply To: Bread crumbs and quantity of goods

#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