次のチュートリアルを使用して、最も売れた製品をオプション (フィルタリング) で並べ替えて、magento の製品リスト ページに表示していますか?
/app/code/local/Mage/Catalog/Model/Resource/Product/collection.php
<?php
public function sortByReview($dir){
$table = $this->getTable('review/review');
$entity_code_id = Mage::getModel('review/review')->getEntityIdByCode(Mage_Rating_Model_Rating::ENTITY_PRODUCT_CODE);
$cond = $this->getConnection()->quoteInto('t2.entity_pk_value = e.entity_id and ','').$this->getConnection()->quoteInto('t2.entity_id = ? ',$entity_code_id);
$this->getSelect()->joinLeft(array('t2'=>$table), $cond,array('review' => new Zend_Db_Expr('count(review_id)')))
->group('e.entity_id')->order("review $dir");
}
?>
しかし、私はすべてのカテゴリから最も売れている製品を並べ替えたいと思っています。
これどうやってするの?これに利用できる無料の拡張機能はありますか?