July 5, 201316:37 Move currency converter to the Header in Magento Magento | Uncategorized If you would like to move the currency switcher from the left column to the header, you can use the… Read more
July 5, 201316:36 Remove .html from category or product URL in Magento Magento | Uncategorized Can you help me discover the solution to removing .html from Magento category URL?How configure magento such that the category… Read more
July 5, 201316:30 How to create multiple websites in Magento 1.4 Magento | Uncategorized I was getting crazy trying to solve this. Finally I found the solution.After create the X Websites you need from… Read more
July 5, 201316:27 Script for to remove the cache in Magento Magento | Uncategorized Here, i paste code to remove the cache from the magento. Magento can provide a options to us to remove… Read more
July 5, 201316:24 How to add custom module in Magento backend Magento | Uncategorized Step 1: Declare your shell module and it’s code poolCreate an xml file /app/etc/modules/Company_Web.xml (You can use any name, even… Read more
July 5, 201316:23 How to remove please select from custom option drop down in Magento Magento | Uncategorized Open: appcodecoreMageCatalogBlockProductViewOptionsTypeSelect.php Alter the following lines:if ($_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_DROP_DOWN) {$select->setName(‘options[‘.$_option->getid().’]‘)->addOption(”, $this->__(‘– Please Select –’));}To:if ($_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_DROP_DOWN) {$select->setName(‘options[‘.$_option->getid().’]‘);// ->addOption(”, $this->__(‘– Please Select… Read more