Hello,
I’m referring to this post:
https://kriesi.at/support/topic/category-archive-page-change-layout-to-show-excerpt/#post-459206
Is there any way to modify the code to get the layout also for the “tag” result page, not only for the category page?
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;
}
Thanks, Enrico
Hey Enrico,
Try using this code:
add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2);
function avia_change_category_blog_layout($layout, $context){
if($context == 'tag') $layout = 'blog-grid';
return $layout;
}
Best regards,
Nikko
Perfect, that works well :)
Thank you.
Hi,
Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.
Thank you for using Enfold :)
Best regards,
Vinay