Cart Tax – Calculate Grand Total Without Tax

cartshipping-taxtax

i want and need in cart display Grand Total price without include tax, but tax price should be display in different line.
How i can do this? where i can modify file?

Thanks

Best Answer

This will get you your carts subtotal:

Mage::getModel('checkout/cart')->getQuote()->getSubtotal();

This will get your your carts grand total:

Mage::helper('checkout')->formatPrice(Mage::getModel('checkout/cart')->getQuote()->getGrandTotal());
Related Topic