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.
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