Hide category meta on certian posts?

How can I hide the category from showing on certain posts - ?

Using this in teh CSS of the post, but missing the category line

.p-meta span:nth-child(1) {display: none;}

.post .entry-wrap .p-meta>span:nth-child(2) {
display: none;
}

.p-meta span:nth-child(4) {
display: none !important;
}

.p-meta > span:nth-child(3):after {
display:none;
}
.more-link {
display: none;
}
Thanks- Todd

Sample URL - https://www.palmspringslife.com/johannes/

Found it -

Had to remove “after” from this:
.p-meta > span:nth-child(3):after {
display:none;
}

to :.p-meta > span:nth-child(3): {
display:none;
}

You are most welcome. :slight_smile:

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