четверг, 28 февраля 2013 г.

Display Categories and SubCategories in Magento

Display Categories and SubCategories in Magento

A newer, better version of this post has been written.
Category Navigation Listings in Magento eCommerce
The majority of Magento websites out there list their top level categories as well as the current categories sub-categories. This feature is commonly requested on forums so I decided to write a small post about it.
Rather than just write out the code, I will show you a few variations so that you can get the right one for you.
All of the following code samples can be copy and pasted into ANY template file and will function correctly.

Display Top Level Categories Only

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * http://fishpig.co.uk - Magento Tutorials
 *
 * Display top level categories
 *
**/
?>
$_helper = Mage::helper('catalog/category') ?>
$_categories = $_helper->getStoreCategories() ?>
if (count($_categories) > 0): ?>
    
            foreach($_categories as $_category): ?>
                
  •                 "getCategoryUrl($_category) ?>">
                        echo $_category->getName() ?>
                    
                
            endforeach; ?>
        
    endif; ?>

    Display Top Level Categories and ALL Subcategories

    ?
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    /*
     * http://fishpig.co.uk - Magento Tutorials
     *
     * Display top level categories and subcategories
     *
    **/
    ?>
    $_helper = Mage::helper('catalog/category') ?>
    $_categories = $_helper->getStoreCategories() ?>
    $currentCategory = Mage::registry('current_category') ?>
    if (count($_categories) > 0): ?>
        
              foreach($_categories as $_category): ?>
                  
    •                 "getCategoryUrl($_category) ?>">
                          echo $_category->getName() ?>
                      
                      $_category = Mage::getModel('catalog/category')->load($_category->getId()) ?>
                      $_subcategories = $_category->getChildrenCategories() ?>
                      if (count($_subcategories) > 0): ?>
                          
                                foreach($_subcategories as $_subcategory): ?>
                                    
      •                                 "getCategoryUrl($_subcategory) ?>">
                                            echo $_subcategory->getName() ?>
                                        
                                    
                                endforeach; ?>
                            
                        endif; ?>
                    
                endforeach; ?>
            
        endif; ?>

        Display Top Level Categories and Current Categories SubCategories

        ?
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        17
        18
        19
        20
        21
        22
        23
        24
        25
        26
        27
        28
        29
        30
        31
        32
        33
        34
        35
        36
        37
        38
        /*
         * http://fishpig.co.uk - Magento Tutorials
         *
         * Display top level categories and
         * subcategories of the current category
         *
        **/
        ?>
        $_helper = Mage::helper('catalog/category') ?>
        $_categories = $_helper->getStoreCategories() ?>
        $currentCategory = Mage::registry('current_category') ?>
        if (count($_categories) > 0): ?>
            
                  foreach($_categories as $_category): ?>
                      
        •                 "getCategoryUrl($_category) ?>">
                              echo $_category->getName() ?>
                          
                          if ($currentCategory && $currentCategory->getId() == $_category->getId()): ?>
                              $_category = Mage::getModel('catalog/category')->load($_category->getId()) ?>
                              $_subcategories = $_category->getChildrenCategories() ?>
                              if (count($_subcategories) > 0): ?>
                                  
                                        foreach($_subcategories as $_subcategory): ?>
                                            
          •                                     "getCategoryUrl($_subcategory) ?>">
                                                    echo $_subcategory->getName() ?>
                                                
                                            
                                        endforeach; ?>
                                    
                                endif; ?>
                            endif; ?>
                        
                    endforeach; ?>
                
            endif; ?>
             
             

            Комментариев нет: