Dear Customer Support,
Every post on my page has a featured image, but the images don’t show up when I filter posts by tags. How can I make the filtered page look the same as my blog page?
Best regards,
Peter
Hi Peter,
Could you post a link to the site in question so that we can take a closer look please?
Best regards,
Rikard
Hi Rikard,
the site is http://www.penspa.com
Best regards,
Peter
maybe it is possible via a filter in functions.php of your child-theme:
add_filter('avf_blog_style','avia_change_tag_blog_layout', 10, 2);
function avia_change_tag_blog_layout($layout, $context){
if($context == 'tag') $layout = 'multi-big';
return $layout;
}
edit : no – you did it with alb element and used tags there .
just a moment
i don’t know why your blog-meta is empty ?
on default it should be there – but whole container is empty
did you have some entries in functions.php of your child-theme
f.e. a filter with avf_loop_index_blog_meta ?