How to Remove Price Symbol – Magento 1.9

magento-1.9

I want to know how to remove price symbol only Shopping cart total page. I tried but i don't know exactly file location

enter image description here

Best Answer

You can find bellow files your magento fronted design folder

app\design\frontend\xyz\default\template\tax\checkout

  • grandtotal.phtml
  • subtotal.phtml
  • discount.phtml

and replace bellow function from

$this->helper('checkout')->formatPrice($this->getTotal()->getValue()); 

TO

Mage::helper('core')->currency($this->getTotal()->getValue(), false, false);