 
	
		
		
		
		
			
Hi nebuddlho,
Yes, it’s possible but you would need to use a child theme.
If you aren’t using a child theme yet, you can get it here: https://kriesi.at/documentation/enfold/child-theme/
Once you have installed the child theme, create includes folder inside it, then copy loop-author.php from Enfold (parent theme) and paste it inside includes.
Then find this code in line 72:
$content_output  =  '<div class="entry-content" ' . avia_markup_helper( array( 'context' => 'entry_content', 'echo' => false ) ) . '>';above it, add this code:
if ( has_post_thumbnail($the_id) ) {
	echo '<div class="author-featured-image">';
	echo get_the_post_thumbnail( $the_id, 'large' ); 
	echo '</div>';
}Hope it helps.
Best regards,
Nikko
Nevermind, there was a syntax error. Thanks, you can close the topic
Hi nebuddlho,
I’m glad you fixed it :)
Thanks for using Enfold and have a great day!
Best regards,
Nikko
