手順 1: これを実現するには、Toolbar.php
からファイルをコピーしますapp/code/core/Mage/Catalog/Block/Product/List/Toolbar.php
。Toolbar.php
ローカルにディレクトリ構造を作成し、以下に示すように貼り付けますapp/code/local/Mage/Catalog/Block/Product/List/Toolbar.php
ステップ 2: 232 行目あたりで、setCollection()
関数内に次のコードが表示されます。
if ($this->getCurrentOrder()) {
$this->_collection->setOrder($this->getCurrentOrder(), $this->getCurrentDirection());
}
上記のコードを以下の新しいコードに置き換えます
if ($this->getCurrentOrder()) {
if(($this->getCurrentOrder())=='position'){
$this->_collection->setOrder('entity_id','desc');
}
else {
$this->_collection->setOrder($this->getCurrentOrder(),$this->getCurrentDirection());
}
}