Tag Archives: PHP

Only Display Top-Level Categories In Your Magento Theme

Magento Community Edition 1.7.0.2 So you only want to show a list of your top-most categories, not all the children and their own spawn in turn; navigate to a file called Topmenu.php (app/code/core/Mage/Page/Block/Html/Topmenu.php) and look for the following conditional statement (around line 117). 123456789101112if ($child->hasChildren()) {   if (!empty($childrenWrapClass)) {     $html .= ‘<div […]