How to check the current category level:
1- In category view page

<?php
     $level= $this->getCurrentCategory()->getLevel();
     echo $level;
?>

2- in Other Pages:

<?php 
     $currentCategory = Mage::registry('current_category');
     $level = $currentCategory->getLevel(); 
?>

Categories: Magento

0 Comments

Leave a Reply

Avatar placeholder

Your email address will not be published. Required fields are marked *