Dear Sir
I fixed for you in /public_html/templates/sj_flipshop/html/com_jshopping/product/product_default.php
and find:
<a href="<?php print loadImg(($this->image_product_path."/".$image->image_name),'
placehold.it/83x83');?>" alt="<?php print htmlspecialchars($image->_title)?>" title="<?php print htmlspecialchars($image->_title)?>" data-rel="prettyPhoto"><img class="jshop_img_thumb" src="<?php print loadImg(($this->image_product_path."/".$image->image_thumb),'
placehold.it/83x83/969696');?>" alt="<?php print htmlspecialchars($image->_title)?>" title="<?php print htmlspecialchars($image->_title)?>" /> </a>
=> change to:
<a href="<?php print $this->image_product_path?>/<?php print $image->image_thumb?>" alt="<?php print htmlspecialchars($image->_title)?>" title="<?php print htmlspecialchars($image->_title)?>" data-rel="prettyPhoto"><img class="jshop_img_thumb" src="<?php print $this->image_product_path?>/<?php print $image->image_thumb?>" alt="<?php print htmlspecialchars($image->_title)?>" title="<?php print htmlspecialchars($image->_title)?>" /> </a>
prnt.sc/wn2oka
thanks