On my magento site we have the requirement to sort the product listings by 2 attributes, 'Manufacturer', 'Name' and then falling back to the Unique and default attribute 'Entity ID'.

Seems magento only lets you order by 1 then entity_id. I dont mind having to do this in a hacky way if required.

Looking around a few people have the problem but no one seems to offer an answer so thought I'd give this ago ( First question too, had to be a toughie :) ).

http://www.magentocommerce.com/boards/viewthread/7314/

http://www.magentocommerce.com/boards/viewthread/206869/

link|improve this question
feedback

2 Answers

If I'm understanding your question: You're going to want to use addFieldToFilter As per Alan Storm's information on Varien's Data Collection ORM.

Example:

Mage::getModel('catalog/product')
        ->getCollection()
        ->addFieldToFilter('sku',array('like'=>'a%'))
        ->addFieldToFilter('sku',array('like'=>'b%'))
        ->getSelect()

More Details: http://alanstorm.com/magento_collections

link|improve this answer
Thanks for your reply B00MER, however I'm not trying to filter by anything, the filtering has already been done correctly. I'm trying to SORT the results by two attributes. Problem is magento lets you sort your results by 1 attribute which makes sense, then by Entity ID. I want to add 'Name' before it sorts by Entity ID, I'd imagine this would have to be hard coded somewhere which is fine for my purpose. – Ryu Feb 8 '11 at 15:21
feedback

After some research ( I'm not a php developer =/ ), the following seems to work:

The setOrder() method accepts an array.

$Collection->setOrder(array('attribute1', 'attribute2'), asc);

I'm not sure how anyone would want to use this but I modified this line in Toolbar.php in the Catalogue/Product/List/ directory.

 if ($this->getCurrentOrder()) {
      $this->_collection->setOrder(array($this->getCurrentOrder(), 'name'), $this->getCurrentDirection());
 }

So all my collections are sorted by the current order ( default order ) and then hardcoded to order by name afterwards. Still doing some testing on it but seems to work......

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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