Magento: Get tax value Get link Facebook X Pinterest Email Other Apps October 21, 2015 $totals = Mage::getSingleton('checkout/session')->getQuote()->getTotals(); //Total object $totals['tax']->getValue(); Read more
Magento: Get Grandtotal without Tax Get link Facebook X Pinterest Email Other Apps October 21, 2015 $totals = Mage::getSingleton('checkout/session')->getQuote()->getTotals(); //Total object $grandtotal = $totals["grand_total"]->getValue(); //Grandtotal value Read more
Magento: Get Subtotal without Tax Get link Facebook X Pinterest Email Other Apps October 21, 2015 $totals = Mage::getSingleton('checkout/session')->getQuote()->getTotals(); //Total object $subtotal = $totals["subtotal"]->getValue(); //Subtotal value Read more