For a certain product view I used this code suggested by the HikaShop team:
echo $this->image->display($image->file_path, 'hikashop_main_image', '', '','', 140, $height);
But I get clickable images with its popup which I don't need for this views, the code for each image renders like this:
<a title="" class="hikashop_image_small_link" rel="{handler: 'image'}" href="/media/com_hikashop/upload/vendor1/2243_03.jpg" onclick="SqueezeBox.fromElement(this,{parse: 'rel'});return false;" target="_blank" onmouseover="return hikashopChangeImage('hikashop_main_image','/media/com_hikashop/upload/thumbnail_400x140/vendor1/2243_03.jpg','140','105',this,'');"><img src="/media/com_hikashop/upload/thumbnail_400x140/vendor1/2243_03.jpg" alt="" style="border: 1px solid;"></a>
HOW CAN I JUST SIMPLY DISPLAY THE THUMBS, with no clickable options?