Hi there,
I managed to display the images in my catalog in square and to change their size.
However, the images now look very blurry.
Link to the page in the private area.
Thanks in advance!
Hey quistict,
Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?
Best regards,
Victoria
Credentials added in the private content area
Hi quistict,
It’s blurred because the image size for square is too small, please add this code at the bottom of your functions.php:
function enfold_customization_modify_thumb_size( $size ) {
$size['square'] = array('width'=>300, 'height'=>300);
return $size;
}
add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
Then regenerate the images or simply re-upload the images.
Hope this helps.
Best regards,
Nikko
Thanks, you may close this topic! :D
Hi quistict,
Glad we could help :)
If you need further assistance please let us know.
Best regards,
Victoria