How to edit meta info showed by blog posts

Hello!

I am working on my blog website with the Pro theme and I have found that you can switch the meta information of blog posts on and off. However, I only want to show the date of the post. I don’t want to show the author, the categories and “leave a comment”. How can I change this? Thank you very much! (I took the picture from your knowledge base, but could not find the answer to my question there.)

Kind regards,
Marjolein

Hi there,

You may accomplish this by adding some custom CSS.

Please try this code in the Global CSS:

.p-meta span,
.p-meta span:nth-child(2):after {
    display: none;
}

.p-meta span:nth-child(2) {
    display: block;
}

You can find more info on how to check for CSS selectors here.
Then information about writing your custom CSS here.

Hope this helps.

1 Like

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