Hi..
I need help to correct my thumbnail image. Please see this link : http://villabugis.com/001-test-page/
As you can see the image in thumbnail are not in square as it’s box, so it looks not good, how can I get it cropped correctly?
This is taken from featured image. My portfolio grid showing this featured images cropped well, but not with the magazine..
Please help..
Thanks,
Surya
Hey Surya!
Please add following code to Functions.php file of your child theme in Appearance > Editor
add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
function enfold_customization_modify_thumb_size( $size ) {
$size['magazine'] = array('width'=>200, 'height'=>200);
return $size;
}
adjust the size as needed and then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
Yigit
Thanks Yigit,
Is that the only way? my website has a lot of pics, and regenerate all image thumbnails will take a lot of time and disc space..
Why it is happen like this? Did I do something wrong, I see in other website with enfold are fine without extra code and plugin?
Thanks..
Hi,
Have you figured it out already? They look fine on my end at the moment. Attached a screenshot in private content field.
Best regards,
Yigit
Hi Yigit,
Not when I have normal thumbnail size and have big first picture on left side..
However by changing the thumbnail size it looks I can solve the issue.. So that’s fine for now..
Thank you for your help..