How to hide currency code on product overview page - Magento?

I am using this feature.

  <?php echo Mage::helper('core')->currency($_minimalPriceTax) ?>

      

I get this price - € 479.41, from here I need to hide €. How can i do this?

+3


source to share


1 answer


To get the price without the currency symbol,

Mage::getModel('directory/currency')->format(
    $yourprice, 
    array('display'=>Zend_Currency::NO_SYMBOL), 
    false
);

      



Link to source

0


source







All Articles