0
votes

I am working on a custom module in magento and i want to get a subtotal form cart for that i am using following code. echo Mage::getSingleton('checkout/session')->getQuote()->getSubtotal(); But it return 0(zero) when i execute the page. Please can anyone help me regarding this issue?

1

1 Answers

1
votes

Try this:

$totals = Mage::getSingleton('checkout/session')->getQuote()->getTotals();
$subtotal = $totals["subtotal"]->getValue();