[ad_1]
Hi @kingcooper,
There you go, King! Please use this in Code Snippets or the plugin of your choice, or in your child theme’s function.php!
/**
* Disable the Search Box in the Storefront Theme
*/
add_action( 'init', 'remove_sf_actions' );
function remove_sf_actions() {
remove_action( 'storefront_header', 'storefront_product_search', 40 );
}By the way, for queries related to the Storefront theme, please use the appropiate forum, here: https://projectdmc.org/support/theme/storefront/!
Cheers!
-OP
