Pages

Monday 10 November 2014

Magento Product Discount percent in Magento

Open app/design/frontend/yourpackage/yourtheme/template/catalog/product/price.phtml Find:
<?php endif; /* if ($_finalPrice == $_price): */ ?>
Add above it: place this custom code
<?php // Discount percents output start ?>
    <?php if($_finalPrice < $_price): ?>
    <?php $_savePercent = 100 - round(($_finalPrice / $_price)*100); ?>
        <p class="special-price yousave">
            <span class="label"><?php echo $this->__('You Save:') ?></span>
            <span class="price">
                <?php echo $_savePercent; ?>%
            </span>
        </p>
    <?php endif; ?>
<?php // Discount percent output end ?>

No comments:

Post a Comment