Magento - category display menus and products in the category

I have 2 product categories in my Magento admin. The first category has 5 products, and in category 2 there are 8 products.

What I really would like to do is have a menu that displays both categories, and then a drop-down menu that displays products in each category.

Is it possible? I searched everywhere but found no real examples

+3
source share
2 answers

I think this is possible, but you will have to implement it yourself if you do not find examples :).

Suggestion:
Perhaps you can expand / redefine a function Mage_Catalog_Block_Navigation->_renderCategoryMenuItemHtmlto display its products in a drop-down menu rather than a subcategory.

+1

:

 $newCarCollection = Mage::getModel('catalog/category')->load(CATEGORY_ID);
 $newCarCollection = $newCarCollection->getProductCollection();

. ,

,

+1

Source: https://habr.com/ru/post/1790487/


All Articles