August 27, 201317:13 Creating Recursive Menu in Magento Magento | Uncategorized In order to create the menu a function need to be added. The function that will receive the ID of… Read more
August 27, 201316:30 Magento Layered Navigation in Drop-Down Magento | Uncategorized Magento Layered Navigation in Drop-Down It is very simple.We just need to replace the contents of file/app/design/frontend/default/your-magento-template/template/catalog/layer/filter.phtmlwith <select onchange=”setLocation(this.value)”> <option… Read more
August 27, 201314:30 Magento : Category Flat Data index error Magento | Uncategorized When reindexing “Category Flat Data ” gives error Cannot initialize the indexer process. I run the below query and the… Read more
August 27, 201313:30 Getting Configurable Product from Simple Product ID in Magento 1.5+ Magento | Uncategorized <?php$simpleProductId = 465;$parentIds = Mage::getResourceSingleton(‘catalog/product_type_configurable’) ->getParentIdsByChild($simpleProductId);$product = Mage::getModel(‘catalog/product’)->load($parentIds[0]);echo $product->getId(); // ID = 462 (aka, Parent of 465)?> Read more
August 27, 201311:30 Magento: Difference between order states and statuses Magento | Uncategorized If you are building website in Magento, you may have noticed that there are two columns insales_flat_order table which are confusing…. Read more
August 26, 201316:20 Social media buttons Magento | Uncategorized //linked in like buttonhttp://developer.linkedin.com/plugins/share-button //twitter tweet button https://twitter.com/about/resources/buttons#tweethttps://dev.twitter.com/docs/tweet-button //facebook like button http://developers.facebook.com/docs/reference/plugins/like/ //google +1 button http://www.google.com/intl/en/webmasters/+1/button/index.html Read more