[Resolved] Turn Off Date on Specific Pages

Home Forums Support [Resolved] Turn Off Date on Specific Pages

Home Forums Support Turn Off Date on Specific Pages

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1193054
    Soumyadip

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

    #1193081
    Leo
    Staff
    Customer Support

    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 🙂

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.