Skip to main content

Posts

Showing posts with the label Display all Categories in Magento

Display Top Level Categories and ALL Subcategories

<?php $_helper = Mage::helper( 'catalog/category' ) ?> <?php $_categories = $_helper ->getStoreCategories() ?> <?php $currentCategory = Mage::registry( 'current_category' ) ?> <?php if ( count ( $_categories ) > 0): ?>      <ul>          <?php foreach ( $_categories as $_category ): ?>              <li>                  <a href= "<?php echo $_helper->getCategoryUrl($_category) ?>" >                      <?php echo $_category ->getName() ?>                  </a>         ...

Display Top Level Categories Only

<?php $_helper = Mage::helper( 'catalog/category' ) ?> <?php $_categories = $_helper ->getStoreCategories() ?> <?php if ( count ( $_categories ) > 0): ?>      <ul>          <?php foreach ( $_categories as $_category ): ?>              <li>                  <a href= "<?php echo $_helper->getCategoryUrl($_category) ?>" >                      <?php echo $_category ->getName() ?>                  </a>              </li>      ...