Hi, I would like to show the feature image of the posts in a category page? How can I do that?
Here is the URL – http://rbblog.wpengine.com/category/workflows/ (hosted on WPengine)
Hello,
Featured Images should display there by default, have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
Josue
Yep, disabled all plugins and still the featured image is not showing on the category page – http://rbblog.wpengine.com/category/workflows/ (hosted on WPengine)
Hi,
Can you please create me an administrator account? post it here as a private reply.
Regards,
Josue
Hey!
Please check the page now. We added this on functions.php:
add_filter('avf_blog_style','avia_change_archive_blog_layout', 10, 2);
function avia_change_archive_blog_layout($layout, $context){
if($context == 'archive') $layout = 'multi-big';
return $layout;
}
Best regards,
Ismael
Thanks. Will that keep working if I update the theme or will I have to add that with every update?
Hi!
Yes, but you can avoid that by using a child theme and storing that custom code in its functions.php file.
Best regards,
Josue