Hide Comments and Dates in specific Post Category

I have a specific post category:
http://michellegarciayoga.com/category/meditation-podcast/
and would like to hide the date and comments on the main category page above and on the individual posts in that category.

I tried putting css in the body area of the post page and it did not work. I cannot put it in the Theme Options CSS because I have another category Blog that I want the meta to show up.

Please let me know how to do this.

Thank you

Hi @michellegarcia,

Thank you for reaching out to us. You can target the specific category class and then add the following code in the Theme Options > CSS:

.category-meditation-podcast .p-meta span:nth-child(2), .category-meditation-podcast .p-meta span:nth-child(3) {
    display: none;
}
.category-meditation-podcast .p-meta>span:after {
    content: "";
}

Here are some related links for further reading, this could help you in finding and implementing some CSS fixes:

Hope this helps!

Perfect! Thanks!

You are most welcome. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.