/ Published in: PHP
How to get the cart total in a Magento Page
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$quote = Mage::getModel('checkout/session')->getQuote(); $total = $quote->getGrandTotal(); // format total in order to have a user friendly price $total = $this->helper('checkout')->formatPrice($total);