Unable to Remove products from wishlist

magento, magento-1.6, magento-1.7

Solution

this function should work for you

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

Problem

I want to remove product from wishlist in product listing page(default/template/wishlist/item/column/image.php). I have seen the remove url function in wishlist page `$this->getItemRemoveUrl($item)` . but it doesn’t work in image.php. Even i tried, ``` echo Mage::helper(‘wishlist’)->getRemoveUrl($_product) ``` it gives URL but not showing parameters. eg:- ``` domain.com/wishlist/index/remove (not working) domain.com/wishlist/index/remove/item/3 (actual) ``` So how can i solve this

Original source