Re: Re: Nifty Products Tutorial Part 1

Joined: 11/10/2007
Juice: 328

If you need to show List Price, Our Price and Money Saved.. use this code Snippet

List Price:<?php print uc_currency_format($node->list_price); ?><br />
Our Price:<?php print uc_currency_format($node->sell_price); ?><br />
<?php $savings = $node->list_price - $node->sell_price;
$node_field[0]['value']  = round( ($savings/$node->list_price)*100, 0 );?>

You Save: <?php print uc_currency_format($savings); ?>
Nifty Products Tutorial Part 1 By: mykz- (132 replies) Wed, 03/19/2008 - 19:04