magento - 使用addAttributeToSort为自定义属性对产品集合进行排序 - 无法正常工作

时间:2013-11-28 09:44:18

标签: php magento sorting

我想通过getLoadedProductCollection进行排序。

对于产品属性,我有一个自定义属性'featured_product'

这是我的代码:

$sort=$_GET['s'];
$_productCollection=$this->getLoadedProductCollection()->addAttributeToSelect('featured_product');

$_productCollection->clear();
$_productCollection->getSelect()->reset(Zend_Db_Select::ORDER);

switch($sort)
{
    case 'lp':
    $_productCollection->addAttributeToSort('price', 'ASC');
    break;
    case 'hp':
    $_productCollection->addAttributeToSort('price', 'DESC');
    break;
    case 'fp':
    $_productCollection->addAttributeToSort('featured_product');

    break;
}

对于前两种情况,它没有问题。

但是第三个根本不起作用。

我想将所有特色产品移到收藏列表的开头。

如何更改实现第三种情况的代码?

由于

1 个答案:

答案 0 :(得分:6)

我觉得你也需要和管理员合作。

转到管理员 - >目录 - >属性 - >管理属性,而不是点击featured_product进行编辑,然后从编辑屏幕

set在产品列表中使用=是

用于产品清单中的排序=是

并保存属性并清除缓存。

如果需要,则重新索引数据。