The post date is only displayed when a post description is present, how can i force the date to be displayed even when a description is missing? see private link for example.
Also how can i hide the comment count all the time? and reduce padding between each post to maximize the feature image size ?
Hey kilimats,
Thank you for using Enfold.
This is possible but you have to modify the parent theme files. Edit the config-templatebuilder > avia-shortcodes > postslider.php file, look for this code around line 431:
if($show_meta && !empty($excerpt))
.. replace it with:
if($show_meta)
Remove the comment count with the following:
.slide-meta-comments, .slide-meta-comments + .slide-meta-del {
display: none !important;
}
Best regards,
Ismael
Thx ill try, does that mean ill be forced to update that file manually everytime i upgrade enfold? Is there no better way?
Hi!
Yes, unfortunately, you will have to modify the file every theme update.
Regards,
Ismael
thx !, the change worked, why is there no way to put this into the child theme folder? weird that it can only be a temporary change
Hi,
That’s not a template file so you cannot drag it to a child theme.
Best regards,
Andy