Support #9499
closedtiny question - preventing dates on posts?
0%
Description
How do I prevent the date I posted showing on posts? (https://historyprogram.commons.gc.cuny.edu)
I thought I'd fixed this problem with this custom CSS, but no:
.entry-meta .byline {
display: none;
}
footer.entry-footer {
display: none;
}
Updated by Raymond Hoh over 6 years ago
Hi Marilyn,
Can you take a screenshot of the places where the date is appearing? I can write some CSS once I know what needs to be hidden.
If you're talking about the date located next to the comment bubble on the frontpage, use this:
abbr.published {display:none;}
Updated by Matt Gold over 6 years ago
- Status changed from New to Assigned
- Assignee set to Raymond Hoh
Updated by Marilyn Weber over 6 years ago
Ray -
Thanks! This did work to remove the date. Is there a way for me to remove that gray bar with the pop-up bubble entirely?
I really appreciate you replying to this!
Updated by Raymond Hoh over 6 years ago
Replace the above with this:
body.home .entry-meta {display:none;}
Updated by Marilyn Weber over 6 years ago
Worked perfectly, thank you! Feel free to close. Appreciate your patience1
Updated by Raymond Hoh over 6 years ago
- Category name set to WordPress (misc)
- Status changed from Assigned to Resolved
- Target version set to Not tracked
Thanks for confirming, Marilyn!