Hello
When I Use a Masonory, not the Masonary Gallery.
I use the categories from my posts, to display the Images.
The Problem is, the Images which I use in the post are super high resolution. around 3000x4000px.
The Images which are then shown in the Masonary, are not high resoluted. They are just crap.
How can I manage that?
I already installed “Simple Image Sizes”
and changed:
Best Regards,
Phil
Hi Vangone,
We apologize for the delayed response.
It seems to be working on the left image but not on the right image, can you try to re-upload the right image?
If it still not working, try adding this code in functions.php:
add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
function enfold_customization_modify_thumb_size( $size ) {
$size['masonry'] = array('width' => 1600, 'height' => 1600, 'crop' => false);
return $size;
}
then regenerate or re-upload the image.
Best regards,
Nikko