Hi,
We set the default product thumbnail's size to 100x100 but you can change it through the file "'YourHikashop'\plugins\system\hikashopproductinsert\hikashopproductinsert_view.php" by changing the lines :
if(!empty($product->images)){
$image =reset($product->images);
echo $this->image->display(@$image->file_path,false,$this->escape(@$image->file_name), '' , '' , 100, 100);
}
by
if(!empty($product->images)){
$image =reset($product->images);
echo $this->image->display(@$image->file_path,false,$this->escape(@$image->file_name), '' , '' , YOURWIDTH, YOURHEIGHT);
}
We planned to make it an option for next Hikashop releases
.