Site logo

[Resolved] the date is being duplicated on my blog posts

Home Forums Support [Resolved] the date is being duplicated on my blog posts

Home Forums Support the date is being duplicated on my blog posts

Viewing 9 posts - 31 through 39 (of 39 total)
  • Author
    Posts
  • #1815634
    Elvin
    Staff
    Customer Support

    That’s strange.

    Any chance you can put up a staging site copy of your current site and let us have temporary backend access to do our own investigation?

    You can use the private information text field to provide the site details. Let us know. Thanks. 🙂

    #1815639
    Rob

    I’m sorry, I don’t know how to do that (staging site copy). I’m happy to give you access to my site if that’s any help.

    Thanks.

    #1815682
    Elvin
    Staff
    Customer Support

    I’m sorry, I don’t know how to do that (staging site copy). I’m happy to give you access to my site if that’s any help.

    Thanks. You can use the private information text field so it’s kept private. Let us know. 🙂

    #1816767
    Rob

    Thanks, I tried to create a staging instance of my website, but my site exceeds the allowable limit for staging. Please find in the restricted area (below) a temporary access link to the admin area of my website. Thanks for your help.

    #1816815
    Elvin
    Staff
    Customer Support

    Thanks.

    It’s this one – https://share.getcloudapp.com/z8uOxBdk

    It’s in your code snippet plugin.

    #1816863
    Rob

    Thanks so much! I’ve deleted that filter and this how the article meta data displays now:

    article meta data

    For some reason, the ‘Last Updated’ date has now disappeared.

    Do you know how I can get that back?

    Thanks for your help.

    #1816884
    Elvin
    Staff
    Customer Support

    For some reason, the ‘Last Updated’ date has now disappeared.

    Do you know how I can get that back?

    Thanks for your help.

    That’s what the CSS from my previous reply is for.

    Check this – https://generatepress.com/forums/topic/publish-date-and-modified-date-on-a-post/#post-1181495

    It’s this one:

    .posted-on .updated {
        display: block;
    }

    And if you want to add back the Last updated label, we can do it with CSS as well.

    .posted-on .updated:before {
        content: "Last Updated: ";
    }

    And if you want to add label to the published date, say for example “Published on:”

    You can do something like this:

    .posted-on .published:before {
        content: "Published on: ";
    }
    #1816990
    Rob

    Thanks so much!

    This is how it looks now:
    article meta data

    Exactly what I was aiming for!

    Thanks for all your help with this and your patience. 🙂

    #1817007
    Elvin
    Staff
    Customer Support

    No problem. Always glad to be of any help. 😀

Viewing 9 posts - 31 through 39 (of 39 total)
  • You must be logged in to reply to this topic.