To remove Page Title from the woocommerce main(shop) page with storefront theme you need to add following code in functions.php.
function hide_shop_page_title() { return false; } add_filter( 'woocommerce_show_page_title' , 'hide_shop_page_title' ); |
To remove Page Title from the woocommerce main(shop) page with storefront theme you need to add following code in functions.php.
function hide_shop_page_title() { return false; } add_filter( 'woocommerce_show_page_title' , 'hide_shop_page_title' ); |