On a post page that only has a ‘featured image’ but no actual image within the posts, there appears a generic icon on the left of the post. How can I remove that?
Hi jlarmen!
Open up /enfold/includes/loop-index.php and change line 100 from this.
echo "<div class='blog-meta'>";
To this.
if ( $slider ) { echo "<div class='blog-meta'>"; } else { echo "<div class='blog-meta' style = 'display:none;'>"; }
Best regards,
Elliott
Thanks, didn’t see the response.