Skip to content

Instantly share code, notes, and snippets.

@Franz333
Franz333 / storefront-remove-cart-header.php
Created February 2, 2021 13:11
Storefront - Remove cart from header
function fdj_remove_cart_header() {
remove_action( 'storefront_header', 'storefront_header_cart', 60 );
}
add_action( 'init', 'fdj_remove_cart_header' );
@Franz333
Franz333 / storefront-remove-product-search-header.php
Created February 2, 2021 13:08
Storefront - Remove product search input field from header
function fdj_remove_product_search_header() {
remove_action( 'storefront_header', 'storefront_product_search', 40 );
}
add_action( 'init', 'fdj_remove_product_search_header' );