I am using Magento 1.7.0.2 and have some simple products, with custom attributes, being displayed in a category product listing.
I am looking to split the product listing by the products' custom attribute so each attribute has a list of products within tags so I can use jQuery tabs to split the categories up.
I see that default\template\catalog\product\list.phtml generates the list of products:
$_productCollection=$this->getLoadedProductCollection();
How would I go about splitting the products into separate divs by attribute?
Thanks in advance.