ShareTo display basic reviews on a product page, you want to add the following line to your catalog.xml within catalog_product_view.[…]
Read moreCategory: Magento
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