ShareTo call a static block on a phtml file, there are two ways: i. To call it with help[…]
Read moreAuthor: admin
PHP Extensions “0” must be loaded , while installing
ShareReplace in file app/code/core/Mage/Install/etc/config.xml (near 71th string) this <extensions> <pdo_mysql/> </extensions> with this <extensions> <pdo_mysql>1</pdo_mysql> </extensions>
Read moreHow to get customer First Name, Last Name , Email Address or Details in magento
Share$customer = Mage::getSingleton(‘customer/session’)->getCustomer(); $email = $customer->getEmail(); // To get Email Id of a customer $firstname = $customer->getFirstname(); // To get[…]
Read more