Archived topic
the date is being duplicated on my blog posts
38 replies · Started by Rob on May 31, 2021
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. :)
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.
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. :)
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.
Thanks so much! I've deleted that filter and this how the article meta data displays now:

For some reason, the 'Last Updated' date has now disappeared.
Do you know how I can get that back?
Thanks for your help.
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: ";
}
Thanks so much!
This is how it looks now:

Exactly what I was aiming for!
Thanks for all your help with this and your patience. :)
No problem. Always glad to be of any help. :D