Hide metadata from Posts Page and Portfolio projects

Hello

First I would like to congratulate you for your great theme.

I was trying to hide author, date, cathegory and thair respective icons.

I tried this custom CSS but it did not worked.

.archive .entry-meta {
display: none;
}

This is my post page.
http://lessence.com.uy/novedades/

Thank you in advance for any help you can provide

Hi @otton,

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


ul.post-meta {
    display: none;
}

Best Regards,
Movin

It works!
Thank you Movin!

Author is still showing on the portfolio projects.
Is it possible to remove it?
I tried this but it did not worked
:

body.single-jetpack-portfolio .content ul.post-meta li:first-child {
display: none;
}

Thank you Again!

Author is still showing on the portfolio projects. Is it possible to remove it?

Could you please share me the page URL from your site where it is displaying so that i can help you to remove it?

Of course!

http://lessence.com.uy/portfolio/prueba-2/

Thank you again

Please also use the below CSS code to remove it from that page.


.single-jetpack-portfolio .author-bio {
    display: none;
}

It worked perfectly.
Thank you for all your help.

You are most welcome here :slight_smile: