Just a little code snippet to remove Storefront’s breadcrumbs. Add this to you functions.php:
function tk_remove_storefront_breadcrumbs() { remove_action( 'storefront_before_content', 'woocommerce_breadcrumb', 10 ); } add_action( 'init', 'tk_remove_storefront_breadcrumbs' );