Hi,
1/ To do so you have to override the product page view in order to remove the code which display the popup.
If you do not know how to perform a view override, we have a documentation page which talk about it :
www.hikashop.com/support/support/documen...ize-the-display.html
To remove the image popup, you have to override the view "show_block_img" and remove the code which create the popup.
echo $this->popup->image($html, $img->origin_url, null, $attr);
and replace it by
You can do the same for the thumbnails.
if(empty($variant_name)) {
echo $this->popup->image($html, $img->origin_url, $id, $attr, array('gallery' => 'hikashop_main_image'));
} else {
echo $this->popup->image($html, $img->origin_url, $id, $attr, array('gallery' => 'hikashop_main_image_VARIANT_NAME'));
}
into
Regards,