Skip to content

Instantly share code, notes, and snippets.

View camilosanchez's full-sized avatar

Camilo Sanchez camilosanchez

  • Santo Domingo, Dominican Republic
View GitHub Profile
@stuartduff
stuartduff / remove-storefront-search-box-header.php
Created January 5, 2016 13:26
Remove the search box from the header of WooThemes Storefront theme
function remove_sf_actions() {
remove_action( 'storefront_header', 'storefront_product_search', 40 );
}
add_action( 'init', 'remove_sf_actions' );