我有一个包含很多类别的 Magento 1.12 安装。通过更改 Toolbar.php 中的以下行,所有类别都按降序排序:
public $_direction = 'desc';
问题是我的客户想要将单个类别的方向更改为升序。有谁知道如何做到这一点?
非常感谢。
在模板中调用了app/code/core/Mage/Catalog/Block/Product/List/Toolbar.php
一个函数。我们可以这样重写、扩展和改变这个函数:getCurrentDirection()
toolbar.phtml
Toolbar.php
/**
* Retrieve current direction
*
* @return string
*/
public function getCurrentDirection()
{
$dir = $this->_getData('_current_grid_direction');
if ($dir) {
return $dir;
}
$directions = array('asc', 'desc');
$dir = strtolower($this->getRequest()->getParam($this->getDirectionVarName()));
if ($dir && in_array($dir, $directions)) {
if ($dir == $this->_direction) {
Mage::getSingleton('catalog/session')->unsSortDirection();
} else {
$this->_memorizeParam('sort_direction', $dir);
}
} else {
$dir = Mage::getSingleton('catalog/session')->getSortDirection();
}
// validate direction
if (!$dir || !in_array($dir, $directions)) {
// Addition: get current category for custom direction
$_category = Mage::registry('current_category');
if ($_category && $_category->getId() == 10) {
$dir = 'asc';
} else {
$dir = $this->_direction;
}
}
$this->setData('_current_grid_direction', $dir);
return $dir;
}
请注意添加了获取当前类别和测试类别 ID。(将“10”替换为您使用的任何类别 ID。)