I have a problem with the productpage of Hikashop.
I wanted to change the imagesize on the productpage.. that worked well with changing the 'show.php' file:
echo $this->image->display($image->file_path,true,$image->file_name,'id="hikashop_main_image" style="margin-top:10px;margin-bottom:10px;display:inline-block;vertical-align:middle"','id="hikashop_main_image_link"');
to this:
echo '<img src="'.$this->image->uploadFolder_url.$image->file_path.'" alt="'.$image->file_name.'" id="hikashop_main_image" style="margin-top:10px;margin-bottom:10px;display:inline-block;vertical-align:middle" />';
and this:
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_'.$variant_name.'_link"');
to this:
echo '<img src="'.$this->image->uploadFolder_url.$image->file_path.'" alt="'.$image->file_name.'" id="hikashop_main_image_'.$variant_name.'" style="margin-top:10px;margin-bottom:10px;display:inline-block;vertical-align:middle" />';
So now my images are the right size, but it still uses the thumbnail image for it.. causing a very bad resolution in my images...
I want Hikashop to use the main image, instead of the thumbnail image even while/after hovering the child images...
Here's what I mean:
www.blv-service.nl/welkom/index.php/cata.../category_pathway-13
Hope someone can help me out!