Tagged: Blog, caption, description, featured image, Lightbox
Hi StuWeTueHo!
Try opening up /enfold/includes/loop-index.php and find line 79.
$featured_img_desc = the_title_attribute('echo=0');
And change it to this.
$desc = get_post( get_post_thumbnail_id() ) -> post_excerpt;
$featured_img_desc = ( $desc != null ) ? $desc : the_title_attribute( 'echo=0' );
And then click on your featured image when editing your post and insert some text into the caption setting and save.
Regards,
Elliott
This fix works. Thank you. Will this be inluded in a theme update?