Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #909922

    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

    #910114

    Hi Peter,

    Could you post a link to the site in question so that we can take a closer look please?

    Best regards,
    Rikard

    #910348

    Hi Rikard,

    the site is http://www.penspa.com
    Best regards,
    Peter

    #910373

    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

    #910386

    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 ?

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.