Magento – Add to Wishlist Without Redirecting

wishlist

How to disable or redirect to same page after pushing add to wishlist button? Same way you can disable it for add to cart.

Best Answer

You can override the add to wishlist action in the wishlist controller and make it redirect to the referrer.

Override this method Mage_Wishlist_IndexController::addAction() and replace this:

$this->_redirect('*', array('wishlist_id' => $wishlist->getId())); 

with this:

$this->_redirectReferer()