Magento – Get the total price of items which currently in the cart – Gesamtpreis des Warenkorbes
You need in Magento the total price of the items which currently in the shopping cart? This is the solution:
<?php echo $this->helper('checkout')->formatPrice(Mage::getSingleton('checkout/cart')->getQuote()->getGrandTotal()); ?>
One Comment