How to Remove Product Category Title WooCommerce

WooCommerce Remove Product Category TitleIf you are looking for a quick way to remove the WooCommerce product category title, you can do so using the action filter that hooks on the woocommerce_show_page_title hook.

If you have not used filters before you can learn more about how filters work in WordPress from the post I shared earlier  here  – Guide to WordPress filter hooks.

WooCommerce Remove Product Category Title

To remove product category title from your WooCommerce store you need to edit the theme by adding the following code snippet to the functions.php file of your theme.

add_filter('woocommerce_show_page_title', 'njengah_remove_product_category_title', 20);

function njengah_remove_product_category_title(){

    return false;

}

How the Code Works

This is a filter hooks that checks the title on the product category page and returns a false to disable it as you can see on the callback function.  Its just simple and effective when added to your theme functions.php file.

Similar Articles