Skip to content

Instantly share code, notes, and snippets.

@stuartduff
Created January 5, 2016 13:26
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stuartduff/e35270ef23bd1bef8b30 to your computer and use it in GitHub Desktop.
Save stuartduff/e35270ef23bd1bef8b30 to your computer and use it in GitHub Desktop.
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' );
@FullStackAlex
Copy link

awesome!

@tobyroblescc
Copy link

Thanks!!! :)

@Castaman
Copy link

Best!

@z-h-r
Copy link

z-h-r commented Dec 22, 2020

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment