我想从产品列表页面(default/template/wishlist/item/column/image.php)的愿望 list 中删除产品。

我在心愿单页面 $this->getItemRemoveUrl($item) 中看到了删除 url 功能。但它在 image.php 中不起作用。
即使我尝试过,

echo Mage::helper(‘wishlist’)->getRemoveUrl($_product)

它提供 URL 但不显示参数。

例如:-
domain.com/wishlist/index/remove (not working)
domain.com/wishlist/index/remove/item/3 (actual)

那么我该如何解决这个问题

最佳答案

这个功能应该适合你

Mage::helper('wishlist')->getRemoveUrl($_product)

关于magento - 无法从心愿单中删除产品,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13207096/

10-12 16:44