Jump to content

Redution percnent on category and home page


Recommended Posts

Use the following code in the foreach loop:

{if ($product.reduction_price != 0 || $product.reduction_percent != 0) && ($product.reduction_from == $product.reduction_to OR ($smarty.now|date_format:'%Y-%m-%d %H:%M:%S' <= $product.reduction_to && $smarty.now|date_format:'%Y-%m-%d %H:%M:%S' >= $product.reduction_from))}
  {if $product.reduction_price}{$product.reduction_price}{else}{$product.reduction_percent}%{/if}
{/if}



This will display the reduction price or percentage specified only if it is currently within the reduction_from and reduction_to dates.

Link to comment
Share on other sites

×
×
  • Create New...