Tagged: enfold, tag archive
I customized the design of the archive page with css, however the category page is ordered slightly differently so the code does not fully work.
I cannot get the thumbnails on the Category archive page to be the correct size. I would really appreciate some guidance.
Thank you
Hi haydaw!
Thank you for using Enfold.
Please add this in the functions.php file:
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-small';
return $layout;
}
Blog style can be single-small, single-big, blog-grid and multi-big.
Best regards,
Ismael
Hello Ismael,
Adding this code actually resulted in a server 500 error. Any idea?
Thanks,
Hayden