How would I show the discounted price within my template by using a predicate (uc_discount module):
OLD PRICE: [original SELL PRICE]
NEW PRICE: [discounted SELL PRICE]
OLD PRICE could be shown like this:
<?php
print uc_currency_format($node->sell_price);
?>How to show the discounted (NEW) price in a theme?
I assume I should use uc_price($price_info, $context) function, but I don't think it's accessible in my tpl.php file.
