Dear PRISCO
Please go to \templates\sj_market\html\mod_sj_vm_listing_tabs\default_items.php and find:
<?php if($params->get('item_percentage_discount_display',1) == 1){
echo '<div class="box-label">';
$percent = (int)(((((int)$item->prices['product_price'] - (int)$item->prices['salesPrice']))/$item->prices['product_price'])*100);
echo '<span class="label-product label-sale">-'.$percent . '%</span>';
echo '</div>';
} ?>
=> change to:
<?php if($params->get('item_percentage_discount_display',1) == 1){
$percent = (int)(((((int)$item->prices['product_price'] - (int)$item->prices['salesPrice']))/$item->prices['product_price'])*100);
if( $percent > 0){
echo '<div class="box-label">';
echo '<span class="label-product label-sale">-'.$percent . '%</span>';
echo '</div>';
}
} ?>
thanks