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.
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.