Hi enfold team,
I want the date and the category not to show in the blog teaser.
I have disabled them in the enfold menu, but in the tease they still show.
how can I hide them from there as well?
hide category from blog teaser
thank you for your help
Hey,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
CSS Snippet:
.html_elegant-blog #top .post-entry .post-meta-infos, .html_elegant-blog .avia-content-slider .slide-meta {
display: none;
}
Best regards,
Yigit
thank you Yigit,
1) the date is gone, but the category still shows. how can I remove that as well?
2) and as a follow up: is it possible to add a “read more” button to the teasers?
Hi,
Thank you for the update.
1.) You should be able to remove the categories with this css code.
.html_elegant-blog #top .avia-content-slider .blog-categories {
display: none !important;
}
2.) The read more link will automatically be added to the post as long as you’re using the default editor, and not the advance layout builder.
Best regards,
Ismael
great,
thank you