Site logo

Archived topic

Turn Off Date on Specific Pages

1 reply · Started by Soumyadip on March 12, 2020

Viewing posts 1–2 of 2

I want to turn off the date on Specific Pages only? Please suggest any solution...

Hi there,

Try this CSS for the page you've linked:

body.page-id-514 .posted-on .updated {
    display: none;
}

You would need to find the page ID and keep adding on the CSS like this:

body.page-id-514 .posted-on .updated,
body.page-id-xxx .posted-on .updated,
body.page-id-xxx .posted-on .updated {
    display: none;
}

Adding CSS: https://docs.generatepress.com/article/adding-css/

Let me know if this helps :)

This archived topic is closed to new replies.