There are a number of places where metadata is displays and I need to delete it. It shows up on the post, and any links to the post including a widget in the sidebar. Can I eliminate it (display none) in the quick CSS? Would love that solutions so when I update theme, my changes are kept.
I’d like to delete post date, author, and categories.
Thanks
Hey!
Try adding this code to the Quick CSS:
.post-meta-infos {
display: none !important;
}
Quick CSS code will remain when updating.
Cheers!
Josue
Works like a charm on the posts. However the date still shows up on the Enfold child latest news widget and on the blog post thumbnails (when I add links to posts from the avia layout builder.) Any more tips?
Hi!
Replace the code by this:
.post-meta-infos, .news-time, .slide-meta{
display: none !important;
}
Regards,
Josue
Sparky!