Hi, I’d like to remove the page title of the shop page. Can I do this with WooCommerce hooks or through a page setting? I prefer not to use CSS for all adjustments that I need to do.
Thanks
Hi, I’d like to remove the page title of the shop page. Can I do this with WooCommerce hooks or through a page setting? I prefer not to use CSS for all adjustments that I need to do.
Thanks
Hi @johannes ,
Seems like you are using default template.
You can place this on child theme functions.php
add_filter( 'woocommerce_show_page_title', '__return_false' );
Regards,
Jenn
@itchycode Thank you!