To remove the product categories section from your storefront theme home page, you can use the following simple code snippet:
add_action( 'init', 'remove_storefront_home_product_categories', 10 ); function remove_storefront_home_product_categories(){ // Unhook storefront_product_categories() function from 'homepage' action hook remove_action( 'homepage', 'storefront_product_categories', 20 ); }
The code is located in the functions.php file of the active child theme (or active theme). Tested and works.