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 ); }
This site offers a solution for difficult programming problems. The solution covers several programming languages like C, WordPress, WooCommerce, JS etc.