I have a category structure like that:
Root Cat
Sub Cat 1
Sub Cat 2
Sub Cat 3
and a product collection:
$productCollection = Mage::getResourceModel('catalog/product_collection');
Now I would like to sort the products in the collection by category. Sub Cat 1 products should come first, then Sub Cat 2 products and finally Sub Cat 3 products. If I change the order of the categories, the order of the products in the collection should change, too. How can I achieve that? A simple $productCollection->addAttributeToSort('category');
or $productCollection->setOrder('category')
does not work.
Thanks in advance!