There are several way to filter payment method in one page checkout: By overriding template: app/design/frontend/[interface]/[theme]/template/checkout/onepage /payment/methods.phtml By…
4x Masonry Grid
1. What is Magento Certification Program? Magento Certification is designed to validate real-world job skills and give hiring managers a…
Today, Magento Tutorial will discuss with you how to convert multi-select field to checkbox in advanced search form of Magento….
When developing in Magento and playing arround with Magento Themes there is some functions you should know. If you want…
When you installMagento probably your URLs would be like: http://www.domain.com/index.php/about-us There is an option to remove that index.php from the…
1. Go to Catalog -> Manage Products -> Add product. Select the Downloadable Product type: 2. Basic set up. Name,…
Look for the file: /app/code/core/Mage/Core/Model/Session/Abstract/Varien.php Arroud the line 100:call_user_func_array(‘session_set_cookie_params’, $cookieParams); Add bars to comment the line://call_user_func_array(‘session_set_cookie_params’, $cookieParams); Done! Now you…
Today we’re going to see how to add them to a Static Block or a Page (under your CMS panel)….
Under the Promotions tab in your admin panel: It’s cool but it’s not cool enough. What I wanted to do…
I mean it doesn’t crash or something it’s just it doesn’t change the currency position. Example: For US Dollars have…
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…
Customer Groups:-User can create and view customer groups from Magento admin panel. Admin can view all defined customer groups by…
If you would like to move the currency switcher from the left column to the header, you can use the…
Can you help me discover the solution to removing .html from Magento category URL?How configure magento such that the category…
I was getting crazy trying to solve this. Finally I found the solution.After create the X Websites you need from…
Here, i paste code to remove the cache from the magento. Magento can provide a options to us to remove…
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…
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…
Make a class in css like:- .mainmenu li.active a{ color:#f68e1e; }<li> <a href=”<?php echo $this->getUrl(”) ?>”> Home </a> </li> <li> <a…
There are numerous ways to setup multiple Magento stores that all share the same codebase and backend, but what method…
System > My Account :-If you would like to change your default password and user name, the security of your…
<?php if(strlen($pname) > 28) {echo substr($pname,0,25);}else {echo $pname;}?>
Get all items information in cart// $items = Mage::getModel(‘checkout/cart’)->getQuote()->getAllItems();$items = Mage::getSingleton(‘checkout/session’)->getQuote()->getAllItems();foreach($items as $item) {echo ‘ID: ‘.$item->getProductId().’‘;echo ‘Name: ‘.$item->getName().’‘;echo ‘Sku: ‘.$item->getSku().’‘;echo…
Can you help me discover the solution to removing .html from Magento category URL?How configure magento such that the category…