Remove Woocommerce Product Category Archive Title

No results found. Try again with different words?

Search must be at least 3 characters.

Remove Woocommerce Product Category Archive Title

When you click on the category of your WooCommerce product, you will be transferred to the archive page. The category archive page will contain all products that belong to this category. If you want to remove the category archive title on the page, this document will help you do it.

Remove the WooCommerce category archive title

How To Remove This?

To remove the category archive title, you must add a filter. You can add the following custom code to the functions.php file of your Child Theme:

# Remove Woocommerce Category Title from the product archive page

add_filter( 'woocommerce_show_page_title', 'remove_category_title_from_product_archive' );
function remove_category_title_from_product_archive( $title ) {
if ( is_product_category() ) {
$title = false;
}
return $title;
}

If you don’t have your Child Theme installed, please check this article on how to do it. 

If you are not sure how to add this code, please check this article.

Was this article helpful?
Did not find a solution? We are here to help you succeed.

Related Docs

Scroll to Top
Now choose your preferred
page builder addon
Choose your preferred page builder addon

Download is Just A Click Away!

Enter your email address and be the first to learn about updates and new features.