4
我有一個magento 1.7.2網站,並且我只能添加一個產品到wishlist.when我添加第二個然後它取代了第一個。當我評論以下幾行代碼在模型/ Wishlist.php它工作正常。無法添加多個產品到心願
protected function _afterSave()
{
parent::_afterSave();
if (null !== $this->_itemCollection) {
//$this->getItemCollection()->save(); //commented this line
}
return $this;
}