Sarathlal N

Display special price as percentage of savings pramotion in Magento 1

If we have products with special price in our Magento store, we can simply display the percentage of savings on this product in single product view page.

We can copy paste below code snippet in single product view template files. Before using, just ensure that we already loaded our product object.

 <?php
 // Get the Special Price FROM date
 $specialPriceFromDate = Mage::getModel('catalog/product')->load($_product->getId())->getSpecialFromDate();
 // Get the Special Price TO date
 $specialPriceToDate = Mage::getModel('catalog/product')->load($_product->getId())->getSpecialToDate();
 // Get Current date
 $today = time();

 $savingsDollarValue = ($_product->getPrice() - $_product->getFinalPrice());
 $originalPrice = $_product->getPrice(); //get orginal price
 $discountPrice = $_product->getFinalPrice(); //get the discount amount
 $savings = $originalPrice - $discountPrice; //get the saving amount from orginal price - discount price
 $savingsPercentage = round(($savings / $originalPrice) * 100, 0); //get discount Percentage
 $productType = $_product->getTypeID();

	if ($savings):
	if ($today >= strtotime($specialPriceFromDate) && $today <= strtotime($specialPriceToDate) || $today >= strtotime($specialPriceFromDate) && is_null($specialPriceToDate)):
	?> 

		<p> <?php echo $this->__('EXTRA') ?><?php echo ' ' ?>
		<?php echo $this->getIdSuffix() ?> <?php echo $savingsPercentage, '%'; //display discount amount ?>
		<?php echo $this->__('Off') ?><?php echo ', ' ?><?php echo $this->__('untill') ?><?php echo ' ' ?>
		<?php echo $currentDate = Mage::getModel('core/date')->date('F dS', strtotime($specialPriceToDate)); ?>
		</p>

	<?php
	endif;
	endif;
 ?>

The above code will display one line of text like below one in our product view page.

EXTRA 30% off, until September 29th

Looking for a skilled developer? I'm currently available for freelance, contract, or full-time remote opportunities! Let's create something amazing together. Send me a quick message, and I'll respond within 24 hours!

Recent Posts

  1. SQL From Basics to Mastery — A Complete, Hands-On Guide
  2. WordPress Beginner Interview Questions
  3. Mastering Traits in PHP - The Complete Guide for Code Reuse and Modularity
  4. Understanding the Singleton Pattern and Using Traits to Achieve Singleton in WordPress Plugin Development
  5. REST API Methods Explained with Best Practices for Building Clean and Secure APIs

Your Questions / Comments

If you found this article interesting, found errors, or just want to discuss about it, please get in touch.