Another Product Galery thumbnails size issues
-
I have 3.3.1 WooCommerce, WordPress 4.9.5 .
I know,You may say update first to 3.3.5,but the thing is I just had this issue after last woocommerce update,and my confidence in woo updates is completely demolished.So the problem is: I can’t get squared product gallery thumbnails no matter what I do:
Tried:
1.Settings-Media-thumbnails 300 h and w, and crop check
Regenerated thumbnails via plugin
No effect,size still rectangle
2. Appearance>Customize>WooComerce>picture size,set 300, ratio 1:1
No effect,size still rectangle
3. in functions php:
add_filter( ‘woocommerce_get_image_size_gallery_thumbnail’, ‘ci_theme_override_woocommerce_image_size_gallery_thumbnail’ );
function ci_theme_override_woocommerce_image_size_gallery_thumbnail( $size ) {
// Gallery thumbnails: proportional, max width 300px
return array(
‘width’ => 300,
‘height’ => 300,
‘crop’ => 1,
);
}
No effect,size still rectangle4.I’ve deleted all my pictures used in the shop
cleaned the medial library with Media Cleaner plugin
re-uploaded few pictures with settings already done in above steps :300×300No effect,size still rectangle
Please help me sorting it out,I only see square thumbnails in Admin product edit page,but in public frontend single product I simply CAN’t change the shape to even sides,and CAN’t get cropped version of the pic
- The topic ‘Another Product Galery thumbnails size issues’ is closed to new replies.