Magento – How to check final price or special price is valid or expire on magento 1.9

magento-1.9pricespecial-price

I am trying to add a condition for checked the special price is valid or not for list page but did not able to find.

Best Answer

Use getFinalPrice() with product object. eg. $_product->getFinalPrice(); This will gives price if special price if it applicable otherwise gives regular price.

Related Topic