Hi !
Ok so the solutions would be :
1. To do it by editing the code of your "show_block_img" file, so you'll just have to this line :
<?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);
<?php
echo $this->image->display(@$image->file_path,false,@$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);
2.
another solution would be to do it with some CSS code like :
#hikashop_main_image_link {
pointer-events: none;
cursor: default;
}