In order to display a “You Save” for “Special Price” products in magento–to make it look similar to amazon’s price display–you can do the following:
Copy app/design/frontend/base/default/template/catalog/product/price.phtml
to
app/design/frontend/default/YOURTEMPLATE/template/catalog/product/price.phtml
Then in price.phtml that you just copied, right above:
<?php endif; /* if ($_finalPrice == $_price): */ ?>
Insert:
<?php // KZN Show discounted percentage and price ?>
<?php if($_finalPrice < $_price): ?>
<?php
$_savePercent = 100 - round(($_finalPrice / $_price) * 100);
$_saveAmount = number_format(($_price - $_finalPrice), 2);
?>
<p class="yousave">
<span class="price-label label">You Save: </span>
