Showing posts with label How to display "You Save XXX" in product lisitng page in Magento. Show all posts
Showing posts with label How to display "You Save XXX" in product lisitng page in Magento. Show all posts

Sunday, 27 July 2014

Save Price in Magento


Save Price in Magento

$product= Mage::getModel('catalog/product')->load($_product->getEntityId());
$price = $product->getPrice();
$specialprice = $product->getFinalPrice();
$save = $price - $specialprice;

// Display Percentage
$totalPercent = (($price - $specialprice) / $price)*100;
echo "<div class='savings'>";
echo "(save ".round($totalPercent)."%)";
echo "</div>";