Storefront theme remove the secondary menu with and add_action();
function remove_storefront_default_actions() {
remove_action( 'storefront_header' , 'storefront_secondary_navigation' , 30 );
}
add_action( 'init', 'remove_storefront_default_actions' );