How do I remove the 'author' and 'category' above my blog post.

I’ve been trying to remove the ‘author’ and ‘category’ above my (blog)posts, but the common css code doesn’t seem to apply. Is there another way?

http://www.thefireharvest.com/news/

Thanks in advance!

Hello.

i used

.post-meta {
    display: none;
}

But thisremove also the date.
I too are looking for solution to only remove author ande categry, but keep the date.

www.rasve.dk

Hi There,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Shapely Options -> Other

.post-meta li:first-child, .post-meta li:last-child {
    display: none;
}

Best Regards,
Movin

Thank you!

That worked for me!

You are most welcome here :slight_smile: