Thursday, June 30, 2011

How to get current currency and currency symbol in Magento

To get Current Currency
$currency_code = Mage::app()->getStore()->getCurrentCurrencyCode(); 
To get current currency symbol use:
Mage::app()->getLocale()->currency(Mage::app()->getStore()->getCurrentCurrencyCode())->getSymbol();

No comments:

Post a Comment