How to disable meta on posts, but keep comments count?

I’d like to remove the meta information on posts (Date and Tags) but keep the Comment count on there. How can I achieve this?

Hello @amschabert,

Thanks for writing in! What you are trying to do will require modification of the post meta. To only display the comment count, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

.p-meta>span {
    display: none;
}

.p-meta>span:last-child,
.p-meta>span:last-of-type {
    display: block;
}

We would love to know if this has worked for you. Thank you.

Worked like a charm. Thank you!

Glad we could help.

Cheers!

1 Like

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