When it comes to website navigation, menu behaves like a roadmap to various informative places of the website. Visitors will only stay on website if the menu and navigation is clear and this will be considered as a good user experience. Recently I have been working on my client’s site where he has multiple category structure for each product. We had to custom code to show it in website menu. The main reason behind this was to provide users the thing he needed directly from the home page menu with lesser clicks. This really works well when it comes to providing better user experience and easy navigation to web users.
If you also want to create categories tree structure in Magento, follow this code and paste at the proper place where you want to show the tree structure and show nested categories.
//CODE FOR MENU START function renderCategoriesTree($category) { $children = Mage::getModel('catalog/category')->load($category->getId()); if($children->getData('children_count')) { $cl='menu-item-has-children menu-parent-item'; } else { $cl=''; } echo '
Adding above custom code in Magento will create a categories tree structure like shown below.
Let me know through commenting if you have any confusion or query regarding this. Your suggestions & feedback are always welcomed. till than, Happy Coding!
Hello Magento Friends, In Magento 2, the checkout process allows customers to choose multiple shipping…
If you are a Shopify admin, using a Shopify Balance Account for your business revenue…
Running an eCommerce business can be incredibly demanding, leaving entrepreneurs little time to focus on…
Generating image thumbnails is a common requirement in web applications, especially when handling media-heavy content.…
In today’s digital landscape, web application security is paramount. As a powerful PHP framework, Laravel…
October was an exciting month for MageComp! From significant updates across our Magento 2 extension…