All these variants have the same image:
Instead of going into each one in the system, I'd like to just swap out the image file in the folder. The problem is, the thumbnail is pulled from
/media/com_hikashop/upload/thumbnail_200x200/ and the squeeze box image is pulled from
/media/com_hikashop/upload/.
I don't want to have to change out the image file in two locations. So instead I thought I would code the system to pull both images from
/media/com_hikashop/upload/ and just style the thumbnail to the correct height and width.
I think I need to change the code in the
show_block_img view to do this but I don't know how. I think it might be something in this line though:
<?php
echo $this->image->display(@$image->file_path,true,@$image->file_name,'id="hikashop_main_image'.$variant_name.'" style="margin-top:10px;margin-bottom:10px;display:inline-block;vertical-align:middle"','id="hikashop_main_image_link"', $width, $height);
if(!empty($this->element->badges))
$this->classbadge->placeBadges($this->image, $this->element->badges, '0', '0');
?>