In the recent version of Enfold, I encountered a small problem:
In the small box next to a blog entry, the full text is inserted as title. So, when hovering above that little box, I get the long text as a tooltip.
In CSS, this is called the “blog-meta” class, and the text is included in the title tag of the link.
I am sure this was not intended, and the title of the blog entry should actually go there.
Can this be fixed?
Hey Stingery!
Please edit includes > loop-index.php, find this code on line 70:
$featured_img_desc = get_post_field('post_content', get_post_thumbnail_id());
Replace it with:
$featured_img_desc = get_post_field('post_title', get_post_thumbnail_id());
Best regards,
Ismael
Thanks, it works!
Is the standard setting a bug or intended?
Perhaps this will be fixed in the next update, too?