• Resolved Cloud Stone

    (@cloudinstone)


    There is just an image option in WooCommerce > Single Products > Gallery Options, it’s just affect the main gallery image size, and How to set gallery thumbnail size?

Viewing 1 replies (of 1 total)
  • Hi @cloudinstone

    This filter should work;

    
    add_filter( 'woocommerce_get_image_size_gallery_thumbnail', function ( $size ) {
        return array(
    	'width'  => 150,
            'height' => 150,
            'crop'   => 1,
        );
    });
    
Viewing 1 replies (of 1 total)
  • The topic ‘How to set product gallery thumbnail size?’ is closed to new replies.