How to remove “POSTS” and date from the page ?

Hi there!

Can you explain a little more on what you mean by POSTS? The date you might be able to either by using CSS to hide that or if you are comfortable enough you could edit the theme’s files to remove that.

Hi

Please paste the following CSS code in the Appearance -> Themes -> Additional CSS to hide both of them:

.home header.page-header {
    display: none;
}

.home time.entry-date.published {
    display: none;
}

If you are able to edit the code then you need to create a child theme then override specific templates and remove the date and posts text from there.

Kind Regards

I went to Appearance -> Themes. and I didn’t find “Additional CSS”

Apologies for the wrong path. Please go to Appearance -> Customize ->Additional CSS



Source link