4

我在目录列表中的排序方法中添加了日期。如果我选择按日期排序,则列表按日期排序 - 这很好用。但是,我应该怎么做才能在目录列表中设置默认的按日期排序(DESC)?就我而言,无法使用这些解决方案:catalog.xml

<action method="setDefaultDirection"><dir>desc</dir></action>
<action method="setDefaultOrder"><field>created_at</field></action>

和:
目录/块/产品/列表/Toolbar.php

protected $_direction = 'desc';

Magento 版本:1.7.0.2。

编辑: 1
我在本地文件夹 /app/code/local/SortByDate/ 中创建了一个新模块。我添加了两个文件。首先/catalog/model/Config.php:

class SortByDate_Catalog_Model_Config extends Mage_Catalog_Model_Config {

    public function getAttributeUsedForSortByArray()
    {
        $options = parent::getAttributeUsedForSortByArray();
        if (!isset($options['created_at'])) {
            $options['created_at'] = Mage::helper('catalog')->__('Date');
        }
        return $options;
    }

}


第二个 /etc/config.xml :

 <config><global><models><catalog><rewrite><config>SortByDate_Catalog_Model_Config</config></rewrite></catalog></models></global></config>

编辑2 - 解决 了我修改了这个功能,问题消失了:)

        public function setDefaultOrder($field)
    {
//set default order by date
        if (isset($this->_availableOrder[$field])) {
                         $this->_availableOrder = array(
                                'created_at' => $this->__('Date'),
                'name'        => $this->__('Name'),
                'price'       => $this->__('Price'),
            );
            $this->_orderField = $field;
        }
        return $this;
    }
4

2 回答 2

1

解决了,我修改了这个函数,问题就消失了:)

    public function setDefaultOrder($field)
    {
    //set default order by date
        if (isset($this->_availableOrder[$field])) {
                         $this->_availableOrder = array(
                                'created_at' => $this->__('Date'),
                'name'        => $this->__('Name'),
                'price'       => $this->__('Price'),
            );
            $this->_orderField = $field;
        }
        return $this;
    }
于 2013-08-17T21:03:49.277 回答
0

我有类似的问题,为了以干净的方式为我的所有网站修复它,我开发了一个可以解决问题的扩展程序。

它是免费的,而且很容易安装和使用。免费下载它。

https://magento.mdnsolutions.com/extensions/mdn-sort-by-date.html

干杯,

雷纳托

于 2015-07-30T07:59:43.437 回答