hey, thanks for your replay.
I've been trying to change the imgae dimension in functions.php, and I could chnage the all the image dimensions except product image.
Unfortunately, I couldn't find value for product thumbnail on functions.php.
$avia_config['imgSize']['widget'] = array('width'=>77, 'height'=>77 );
// small preview pics eg sidebar news
$avia_config['imgSize']['post-format-image'] = array('width'=>630, 'height'=>999, 'crop'=>false);
// big images for post format image and gallery posts
$avia_config['imgSize']['fullsize'] = array('width'=>930, 'height'=>930, 'crop'=>false);
// big images for lightbox and portfolio single entries
$avia_config['imgSize']['featured'] = array('width'=>930, 'height'=>340);
// images for fullsize pages and fullsize slider
$avia_config['imgSize']['portfolio'] = array('width'=>450, 'crop'=>false);
// images for portfolio entries (2,3,4 column)
//dynamic columns
$avia_config['imgSize']['dynamic_1'] = array('width'=>446, 'height'=>151);
// images for 2/4 (aka 1/2) dynamic portfolio columns when using 3 columns
$avia_config['imgSize']['dynamic_2'] = array('width'=>609, 'height'=>210);
// images for 2/3 dynamic portfolio columns
$avia_config['imgSize']['dynamic_3'] = array('width'=>688, 'height'=>151);
// images for 3/4 dynamic portfolio columns
I just found the value on confing.php(/config-woocommerce), and changed the value like below, and still cropped automatically...
//product thumbnails
$avia_config['imgSize']['shop_thumbnail'] = array('width'=>80, 'height'=>80);
$avia_config['imgSize']['shop_catalog'] = array('width'=>450, 'crop'=>false);
$avia_config['imgSize']['shop_single'] = array('width'=>450, 'crop'=>false);
avia_backend_add_thumbnail_size($avia_config);
Is there anything that i can do??
Thanks in advance.. ciao