Maybe this is too easy for you but to me...I can't do it! Guys, I need to hide the title in 2 of my product categories pages in Woocommerce. product-category/cat1 (category id 145) & product-category/cat2 (category id 146)
I tried to achieve that using CSS:
.catid-145 .entry-title {
visibility: hidden;
}
or
.category-145 .entry-title {
visibility: hidden;
}
I know this title is controlled by:
<h1 class="entry-title">Title here</h1>
I need to remove the title text and preserve the space, that's why I'm using "hidden". Any idea will be highly appreciated. Thank you.