Hi,
I have added code below to show my own discount badge:
<!-- show discount on product listing --->
<?php if(!empty($this->row->discount)){
if(bccomp($this->row->discount->discount_flat_amount,0,5)!==0){
echo '<span class="discount-badge">'.$this->currencyHelper->format(-1*$this->row->discount->discount_flat_amount,$price->price_currency_id),'</span>';
}elseif(bccomp($this->row->discount->discount_percent_amount,0,5)!==0){
echo '<span class="discount-badge">'.-1*$this->row->discount->discount_percent_amount.'%','</span>';
}
}?>
<!-- end discount --->
What i want is to add product to category if that product has discount. Can this be done with mass action? I couldn't find such filter....
Many thanks