Skip to main content

Posts

Showing posts with the label how to remove breadcrumb from storefront

How to remove breadcrumb from woocommerce theme that uses storefront?

Solution: To remove breadcrumb and sidebar from your woocommerce child theme that uses storefront theme,  write the following code in functions.php. add_action (' after_setup_theme ',' removing_bredcrumb_sidebar '); function removing_bredcrumb_sidebar () { remove_action('storefront_content_top','woocommerce_breadcrumb',10);         remove_action( 'storefront_sidebar','storefront_get_sidebar',10 ); }