Share$customer = Mage::getSingleton(‘customer/session’)->getCustomer(); $email = $customer->getEmail(); // To get Email Id of a customer $firstname = $customer->getFirstname(); // To get[…]
Read moreMonth: June 2012
How to call a .phtml block file into another .phtml file in magento
Shareyou can call a .phtml block file into another .phtml like <?php echo $this->getLayout()->createBlock(‘catalog/product_list_related’)->setTemplate(‘catalog/product/list/related.phtml’)->toHtml(); ?>
Read more