Tagged: blog posts, date
Hi,
Is there an easy way to hide or remove the time and date on blog posts without having to edit the code? Every time I upgrade the theme by blowing out the folder, it’s a real pain to have to edit the code again. Hoping this can be a setting at some point.
Thanks!
Hey franktw!
You can, with CSS set in the Quick CSS (which gets preserved in the database):
time[class*="date"] {
display: none;
}
Regards,
Josue
Thanks!