【发布时间】:2013-08-12 07:12:07
【问题描述】:
我可以删除愿望清单中的所有项目,但是如何从愿望清单中删除单个项目
以下是删除愿望清单中所有项目的代码:
public function removeWishList($customer_id,$product_id)
{
$itemCollection = Mage::getModel('wishlist/item')->getCollection()
->addCustomerIdFilter($customer_id);
foreach($itemCollection as $item) {
$item->delete();
//Mage::getModel('wishlist/item')->load($product_id)->delete();
}
}
【问题讨论】:
-
您知道标准 magento 的愿望清单页面中有一个“从愿望清单中删除”链接吗?看看所涉及的控制器/模型,你就有答案了..
标签: magento