Magento Reset Admin Password
In this blog, we will see how you can reset magento admin password in case you have lost it and cannot recover it using Forgot Password option. We will assume that you have server access to magento i.e...
View ArticleMinimum Product Price in a Category
In this blog post, we will see the faster way to get minimum product price in category Add this code to your category page where you want to display it. $layer = Mage::getSingleton('catalog/layer');...
View ArticleAdd Link to Left Navigation In My Account Page
In this blog article will see how to add a new link to My Account Page, left navigation menu. A link to the navigation menu is added through layout xml file rather than a phtml file. The code for the...
View ArticleEnable Template Path Hints in Magento
In magento, the html on any page comes from many different phtml files. So if you want to make a change in any page, you need to first know from where that html code is generated. To know this, you...
View ArticleAdding Link to Top Links Section in Magento
In this blog, we will look into the correct way to adding an extra link, to the top links section in magento. If you are wondering what are top links, it’s the links that you see in the header section...
View ArticleGenerate Category Tree Recursively
In this blog we will see how generate a category tree, recursively showing all categories and sub categories. The code is given below, will explain the code line by line <?php $rootcatId=...
View ArticleProduct Collection
In this blog, we will see some important function in magento product collection class. Product Collection class in magento is Mage_Catalog_Model_Resource_Eav_Mysql4_Product_Collection. Lets look at the...
View ArticleSimple URL Rewrite Using Magento xml
In this blog post, we will see how to do simple url rewrite in magento using config.xml. This method is very useful when creating modules in magento and you want to provide fancy url to your module...
View Article