Hello Kresi,
I have a small question about the category page. The layout is messy with the three column lay-out. Where can I change this to a two column lay-out?
Please see example: http://www.originaltours.nl/category/avondarrangementen/
see screenshot:
Hi originaltours!
Please refer to Peter’s post here to change archive layout – https://kriesi.at/support/topic/how-to-get-a-different-layout-for-the-blog-page-without-breaking-breadcrumbs/#post-256745
Best regards,
Yigit
Hello Yigit,
I’ve added the following to the functions.php but I still see 3 columns. I only need to change it to 2 columns. Where can I change that?
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;
}
I’ve tried the different settings (single-small, single-big, blog-grid, multi-big)
Thanks in advance!
Hi!
Thank you for using Enfold.
You can edit archive.php, find this code:
'columns' => 3,
Adjust the columns to 2.
Cheers!
Ismael
Thanks, fixed. Can be closed.