For product category page:
function codegear_hide_category_page_title( $title ) {
if ( is_product_category() ) $title = false;
return $title;
}
add_filter( 'woocommerce_show_page_title', 'codegear_hide_category_page_title' );
For Shop Page
function codegear_hide_shop_page_title( $title ) {
if ( is_shop() ) $title = false;
return $title;
}
add_filter( 'woocommerce_show_page_title', 'codegear_hide_shop_page_title' );
That seemed to work on the product pages, but I would also like it to work on all of my pages and product category pages.
The feature is not available in the free version of the theme please use CSS display none property or upgrade to the premium version of the theme.
When I click on the upgrade link it takes me to a 404 error page