How can I get a certain category level from Magento, setting my category now looks like this.
root_catalog |-Shop |-Shoes |-T-shirts |-Brands |-Nike |-Womens |-Mens |-Adidas |-Asics <?php if( $category = Mage::getModel('catalog/category')->load( $categories[1]) ): ?> <?php echo $category->getName(); ?> <?php endif ?>
When calling $ category-> getName (); I would like to show only the brand name, is this possible?
andkjaer
source share