Dear alexsapa
I can't view your site.
and can't access with your account
prntscr.com/jif1l0
please go to
prntscr.com/jif2if and find
<?php
echo '<div class="sj_percentage_discount_display sj_absolute">';
$percent = (int)(((((int)$item->prices['product_price'] - (int)$item->prices['salesPrice']))/$item->prices['product_price'])*100);
echo ('-'.$percent .'%');
echo '</div>';
?>
=> change to:
<?php
$percent = (int)(100-(($item->prices['salesPrice']*100/$item->prices['basePriceWithTax'])));
if($percent>0){
echo '<div class="sj_percentage_discount_display sj_absolute">';
echo ('-'.$percent .'%');
echo '</div>';
}
?>
thanks