I’d like to add the date to a grid of posts on a page. These posts are generated once someone fills out a form on the website.
Just the date only, not anything else (no comments). How can I do this?
Hey satucker,
When you create your Post Slider, set the Title and Excerpt to display. Then you can hide the other elements you don’t want to display using the Quick CSS under Enfold > General Styling. You can use this code:
.page-id-310 .avia-content-slider.avia-builder-el-2 .blog-categories,
.page-id-310 .avia-content-slider.avia-builder-el-2 .slide-entry-excerpt,
.page-id-310 .avia-content-slider.avia-builder-el-2 .slide-meta slide-meta-comments,
.page-id-310 .avia-content-slider.avia-builder-el-2 .slide-meta .slide-meta-del {
display:none!important;
}
I’ve made it so that this only happens on this page, and not on any slider on any other page. That’s what you’d like, right? :)
Best regards,
Sarah
Perfect. Thank you.