2
votes

How to display cart details along with sub totals discount coupon code etc inside shipping methods section in magento checkout page

1

1 Answers

0
votes

You can simply call this data by getting the quote:

<?php
    $cart = Mage::getModel('checkout/cart')->getQuote();
    $cartData = $cart->getData();
?>

Then display e.g. the grand total:

<?php echo $cartData['grand_total']; ?>