Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1368669

    I have used the Advance Layout to make a page with my blog. Then using the Advance tools I am happy with the look and way it works here:
    https://dev.galaxypress.com/blog/

    But when you go to the archive pages or category page there is no image above? Is there a way to add that?

    Here would be a page that currently is just text:
    https://dev.galaxypress.com/category/historical/

    I am using the default (business) in the style and for the layout I am using the advance editor.

    If I switch the layout to the “single author big preview…” I get the image back, but then the home page for the blog is not what I wanted.
    Thank you,
    Jason

    #1368695

    Hey Jason,

    Thank you for the inquiry.

    You have to apply a featured image for each post. The image that you added in the Advance Layout Builder (ALB) will NOT be automatically set as featured image. Please check the documentation below for more info.

    // https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/#setting-a-featured-image

    Best regards,
    Ismael

    #1368759

    Dear Ismael,

    Thank you. Each of my posts already has a feature image set so I am not sure why it would not be working. I just sent Nikko access to my back end, so I am copying the link in the private filed so that possibly you can take a look too?

    #1368811

    Hi Jason,

    Thank you for the update.

    You may need to add this filter in the functions.php file to adjust the style of the archive pages.

    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
        if($context == 'archive') $layout = 'single-big';
        return $layout;
    }
    

    Let us know if this helps.

    Best regards,
    Ismael

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