The blog category: https://iconiq.dk/category/cms/
Blog page: https://iconiq.dk/viden/
How can I get the same design on my categories as my blog page. I’m not talking about the banner, only til av_mansory. :-)
Hi BenjaminSpeedtsberg,
What Blog Layout are you using?
You can find it in Enfold > Theme Options > Blog Layout > Blog Layout.
Best regards,
Nikko
I use: “Use the advance layout editor to build your own blog layout (simply edit the page you have chosen in Enfold->Theme Options as a blog page)”
And the blog page are set yo /viden/
Hi BenjaminSpeedtsberg,
I see, there’s no option to for the category pages to copy the same layout as the blog if it’s set to Use the advance layout editor to build your own blog layout (simply edit the page you have chosen in Enfold->Theme Options as a blog page), you can only use it if you create pages for it and redirect the category page towards those specific pages.
But you can change the layout atleast to Grid, but would require you to use a child theme: https://kriesi.at/documentation/enfold/child-theme/ (make sure to follow the instructions in the documentation page)
If you already have a child theme then please try to add this code in functions.php of your child theme:
add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2);
function avia_change_category_blog_layout($layout, $context){
if($context == 'archive') $layout = 'blog-grid';
return $layout;
}
Best regards,
Nikko