category

  1. Magento: Display top level categories and subcategories of current category

    Magento: Display top level categories and subcategories of current category

    In this article I'm writing code for display top level categories and sub categories of current category. If you want to have a list with the sub categories of magento of the current Parent...

    Read more »
  2. Magento: Category Image Re-size

    Magento: Category Image Re-size

    We don't have any function to re-size the category image, but we can use this code for category image resize

    [php]
    $_category=Mage::getModel('catalog/category')->load($categoryId());...

    Read more »
  3. Magento: Get parent category, sub-category and product count

    Magento: Get parent category, sub-category and product count

    Here is a quick and complete code to load parent category from current category page and to get sub categories of parent category along with their product count.

    [html]
    /**...

    Read more »
  4. Magento: Display Subcategories of current category

    Magento: Display Subcategories of current category

    Display subcategories of the current category if it has sub categories.

    If it doesn't have the sub categories then display parent category with its sub categories.

    Category...

    Read more »