Get subtotal and grand total in Magento

Use the below code to subtotal and grand total of cart in Magento $sub_total = Mage::getModel('checkout/cart')->getQuote()->getSubtotal(); $grand_total = Mage::getModel('checkout/cart')->getQuote()->getGrandTotal(); Cheers! Amjath

Read More

Unable to send mails in Magento

Some days back, I came across an issue. No mails from Magento are sent successfully and Magento is not throwing any error message in the front end. First I thought its something related to the server and checked if the sendmail is installed

Read More