avalon23_image_size

Pass the size of the image to for the filter type "image"

default: 'thumbnail'

possibly:  'medium', 'large' ,'full' OR  array(55,55)

For example, resize the image for the attribute color

 

 
add_filter('avalon23_image_size', function( $size, $taxonomy){ 
    if('pa_color' == $taxonomy) { 
        $size = 'medium'; 
    } 
    return $size; 
}, 99, 2);