Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1480492

    For some reason the thumbnails for my magazine element are different sizes. I’d like them all to be consistent. I thought they used to be so not sure if there’s something going wrong? Link in private content.

    #1480500

    Hey mosaic,

    Thank you for the inquiry.

    Try to add this filter in the functions.php file to adjust the default magazine thumbnail size:

    function avf_magazine_defaults_mod( $defaults ) {
        $defaults['image_size']['small'] = 'portfolio';
    
        return $defaults;
    }
    add_filter( 'avf_magazine_defaults', 'avf_magazine_defaults_mod' );
    

    Best regards,
    Ismael

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