August 23, 201316:13 Magento Files and Folders Structure Magento | Uncategorized This part of the Magento tutorial will provide detailed information regarding the Magento’s default files and folders structure.You will learn… Read more
August 23, 201316:03 How to create categories tree structure in Magento programmatically Magento | Uncategorized This is simple example to get nested category list. We can easily create a left navigation and a drop-down menu… Read more
August 23, 201314:30 Programmatically change Magento’s core config data Magento | Uncategorized <?php// find ‘path’ in table ‘core_config_data’ e.g. ‘design/head/demonotice’$my_change_config = new Mage_Core_Model_Config();// turns notice on$my_change_config->saveConfig(‘design/head/demonotice’, “1”, ‘default’, 0);// turns notice off$my_change_config->saveConfig(‘design/head/demonotice’,… Read more
August 23, 201312:46 Important Bookmarks! Magento | Uncategorized AJAX Ajax Framework Apache Host Configuration and name change Apache Host Configuration and name change c:windowssystem32drivers file : hosts Change… Read more
August 23, 201312:44 Save shipment information of order programatically Magento | Uncategorized Magento: Save shipment information of order programatically After creating invoice and shipment, it is necessary to add tracking information to… Read more
August 23, 201312:43 Magento: Register guest user to website if email provided Magento | Uncategorized If your Magento website have feature where guest user can place an order without registering themself in your site, you… Read more