From v.2.2.4/1.2.4
For resizing images in woof step filter.
1 2 3 4 5 | add_filter('woof_step_filter_img_size', function($size) { $size = 'large'; //thumbnail, medium, large, full, array(200, 200) //woocommerce_thumbnail ,woocommerce_single, woocommerce_gallery_thumbnail return $size; }); |
