How to get coupon code applied on cart in Magento.?

Magento get coupon code applied on cart code

You can use the following getCouponCode method to apply coupon code on cart in Magento

$coupon_code = Mage::getSingleton('checkout/session')
->getQuote()->getCouponCode();

You can follow this code to get get coupon code applied on cart from the current quote.


You may also like...

Leave a Reply

Your email address will not be published. Required fields are marked *