Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
I can't sort product collection by category id

I have a few categories: guys, ladies, men, women and offers.

Every product is assigned to guys, ladies, men OR women categories.

And some products are assigned to "offers" category.

I need to retrieve every "offers" products but sort by the others categories, I mean:

OFFERS -> guys products -> ladies products -> men products -> women products

Right now I am getting the products to display by the category "offers", but this products cames ordered by name attribute and I need those products sorted by category before name.

How can I achieve this?

share|improve this question

marked as duplicate by Will Jul 24 '12 at 1:56

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

$collection = Mage::getModel('catalog/category')->load($categoryId)
->getProductCollection()
->addAttributeToSort('category', 'ASC');

This will sort the product by category, rather than by name. The addAttributeToSort method will take any of the models existing attributes as a parameter.

share|improve this answer
Care to explain why it was downvoted? – uɐɥʇɐᴎ Jul 23 '12 at 20:45

Not the answer you're looking for? Browse other questions tagged or ask your own question.