Hi,
In that case, you want to edit the file "cart" of the view "checkout" via the menu Display>Views and change the code:
<?php
$image_options = array('default' => true,'forcesize'=>$this->config->get('image_force_size',true),'scale'=>$this->config->get('image_scale_mode','inside'));
$img = $this->image->getThumbnail(@$image->file_path, array('width' => $width, 'height' => $height), $image_options);
if($img->success) {
echo '<img class="hikashop_product_checkout_cart_image" title="'.$this->escape(@$image->file_description).'" alt="'.$this->escape(@$image->file_name).'" src="'.$img->url.'"/>';
}
?>
to something like that:
<img src="http://mywebsite.com/my_custom_images_folder/<?php echo $row->image_name; ?>" height="50px"/>
This supposes that your images are in the folder my_custom_images_folder of your website and that the filename of the image is in the custom item field with the column name image_name and that you want to display the image with a height of 50px.