我想根据任何属性(如)和分组产品对购物车页面中的产品进行排序。有人知道吗?请告诉我。
谢谢, HS
你可以在你的购物车模板中这样做:
$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;
}