Wednesday, July 22, 2015

How to get cart items total on header file in Magento

Source : frontend\default\your_theme\template\page\html\header.phtml Put This Code: <?php      $count = $this->helper('checkout/cart')->getSummaryCount();  //get total items in cart      $total = $this->helper('checkout/cart')->getQuote()->getGrandTotal();...

Sending custom emails in Magento

Step 1: Create html file in app/locale/en_us/template/email/sales/sample_order.html -> sample_order.html file in put your html (Mail sending) content. Step 2: Adding your template to etc/config.xml to register the email template.  -> app/code/[codePool]/[Namespace]/[Module]/etc/config.xml  ...