Uncategorized

Language pack link in Magento

1. Germany Germanhttp://www.magentocommerce.com/extension/413/magento-community-modules–german-germany-language-packKey : magento-community/Locale_Mage_community_de_DE2. France and French:http://www.magentocommerce.com/extension/414/magento-community-modules–french-france-language-pack3.Spanish:http://www.magentocommerce.com/extension/398/magento-community-modules–spanish-spain-language-packkey: magento-community/Locale_Mage_community_es_ES4.Portuguese:http://www.magentocommerce.com/extension/388/magento-community-modules–portuguese-brazil-language-packKey : magento-community/Locale_Mage_community_pt_BR5.Russian:http://www.magentocommerce.com/extension/391/magento-community-modules–russian-russia-language-packkey : magento-community/Locale_Mage_community_ru_RU6.Japanese:http://www.magentocommerce.com/extension/415/magento-community-modules–japanese-japan-language-packKey: magento-community/Locale_Mage_community_ja_JP7.Italian:http://www.magentocommerce.com/extension/377/magento-community-modules–italian-italy-language-packKey: magento-community/Locale_Mage_community_it_IT8.Arabic (Saudi Arabia,In addition to Kuwait,Egyptian…

How to remove please select from custom option drop down in Magento

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…

1 20 21 22 32