Tuesday, September 6

How to get current currency and currency symbol in Magento

here is the script to get current currency & Currency symbol in Magento

for current currency
$currency_code = Mage::app()->getStore()->getCurrentCurrencyCode(); 

for currency symbol
Mage::app()->getLocale()->currency(Mage::app()->getStore()->getCurrentCurrencyCode())->getSymbol();

Hope it helps... Thanks....

No comments:

Post a Comment