Tagged: author archive, featured image
Hey, loving the Enfold theme so far but having problems adding Featured Images to the Author Archive. Could someone be able to help out?
Much appreciated!
Hey tomhilditch,
To change the layout for archive pages please try adding this code to the end of your functions.php file in Appearance > Editor:
This is for the grid layout
add_filter('avf_blog_style','avia_change_archive_blog_layout', 10, 2);
function avia_change_archive_blog_layout($layout, $context){
if($context == 'archive') $layout = 'blog-grid';
return $layout;
}
This is for the large featured image layout
add_filter('avf_blog_style','avia_change_archive_blog_layout', 10, 2);
function avia_change_archive_blog_layout($layout, $context){
if($context == 'archive') $layout = 'single-big';
return $layout;
}
Please let us know if this helps.
Best regards,
Mike