Yes, I too am very interested in displaying a manufacturer’s list (or attribute list), either horizontal or vertical - since I need them in my navigation menu. I tried creating a category for each, since it’s easier to use categories, but this causes duplicates in my layered navigation (when viewing items via a different category tree).
Yes, we have been looking into how we are going to accomplish this as well. Since manufacturers is an attribute, we have yet to decide on how we will design this. I am going to look at it this afternoon and see if we can make any head way. Any suggestions from others would be appreciated.
hi dan.. i find your post on vertical menus very helpful… just a question.. i know you could help…
i have 3 main categories on my store.... learning, store, library....
i wanted to display the store categories only in my left sidebar.. how will i do it?
I’ve followed instructions and finally managed to create a vertical navigation bar, altough the final result it is pretty raw and destroy some part of my template as media/col_left_callout.jpg overrule products in the grid.
Yes, we have been looking into how we are going to accomplish this as well. Since manufacturers is an attribute, we have yet to decide on how we will design this. I am going to look at it this afternoon and see if we can make any head way. Any suggestions from others would be appreciated.
hi dan.. i find your post on vertical menus very helpful… just a question.. i know you could help…
i have 3 main categories on my store.... learning, store, library....
i wanted to display the store categories only in my left sidebar.. how will i do it?
I am also interested in how to do the by brand option as Conyx has done. I figured out how to list all of the manufacturers attributes. However, I haven’t figured out how to link them to each one.
<?php
$product = Mage::getModel('catalog/product');
$attributes = Mage::getResourceModel('eav/entity_attribute_collection')
->setEntityTypeFilter($product->getResource()->getTypeId())
->addFieldToFilter('attribute_code', 'manufacturer') // This can be changed to any attribute code
->load(false);