我想在购物车页面中对任何属性(如)和产品明智的产品进行排序。 有人知道吗?请告诉我。
谢谢, HS
答案 0 :(得分:1)
您可以在购物车模板中执行此类操作:
$cartItems = Mage::getModel('sales/quote_item')->getCollection()
->setQuote($this->getQuote())
->addFieldToSelect('name')
->addOrder('name', 'asc'); //change acc to your attribute
$items = array();
foreach ($cartItems as $item) {
if (!$item->isDeleted() && !$item->getParentItemId()) {
$items[] = $item;
}