For our customization want to hide woocommerce shop page tittle programmatically in WordPress then place the following snippet in functions.php within your theme folder!.
[sourcecode language=”plain”]

add_action( ‘woocommerce_show_page_title’, ‘cw_woocommerce_show_page_title’, 10);
if( !function_exists(‘cw_woocommerce_show_page_title’) ) {
function cw_woocommerce_show_page_title() {
return false;
}
}

[/sourcecode]
Have any doubt, then comment here!

Leave a Reply

Your email address will not be published. Required fields are marked *