Magento – Get the Total Price of items currently in the Cart

If you want to get the total price of items in your Magento cart, you can use code like this:

<?php
echo $this->helper('checkout')->formatPrice(Mage::getSingleton('checkout/cart')->getQuote()->getGrandTotal());
?>

Related Posts

Speak Your Mind