July 3, 201313:48 Add a New Block to a Magento Template Magento | Uncategorized Go to page.xml and below this: <block type=”page/html_breadcrumbs” name=”breadcrumbs” as=”breadcrumbs”/> Add your new code (e.g.) <block type=”page/html_lookbookimage” name=”lookbookimage”… Read more
July 3, 201313:47 Changing the Currency Select Menu in Magento to a List with Flags Magento | Uncategorized ecause a regular select menu can’t have images or background images applied to it (except in newer versions of Firefox)… Read more
July 3, 201313:45 Setting the Default Currency for a User in Magento Magento | Uncategorized This won’t alter the base price in the system but it will set the start price for a user. Simply… Read more
July 3, 201313:44 Get All Child Products in Magento Magento | Uncategorized This script will return all child products from a Magento shop bypassing the category folders. This sample will also take… Read more
July 3, 201313:43 Get Current Category Id in Magento Magento | Uncategorized $layer = Mage::getSingleton(‘catalog/layer’);$_category = $layer->getCurrentCategory();$currentCategoryId= $_category->getId(); Read more
July 2, 201318:05 Add Custom Tabs to the Magento Product Admin Magento | Uncategorized In Magento eCommerce, it is possible to add new attributes to product models and edit the values for these attributes… Read more