Simple 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 without using .htaccess rewrites. Read this full

Product 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 important functions Read this full

Generate 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 Read this full

Adding 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 i.e My Cart, My Account, My Wishtlist, etc. Read this full

Enable 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. Read this full