0

我想根据任何属性(如)和分组产品对购物车页面中的产品进行排序。有人知道吗?请告诉我。

谢谢, HS

4

1 回答 1

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;
}
于 2014-02-10T20:12:13.140 回答