brandonc503 Posted October 10, 2010 Share Posted October 10, 2010 Ive looked at post and googled but no findies... How would I get the reduction percent to display on the category page.. product-list.tpl/php and the index.tpl/php. Link to comment Share on other sites More sharing options...
rocky Posted October 11, 2010 Share Posted October 11, 2010 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 More sharing options...
Recommended Posts