I want to add a wishlist icon on Category page, like on the Product page.
<a onclick="wishlist.add('<?php echo $product_id; ?>');"><i class="icon-heart"></i> </a>
But this did not work in Category page. I also checked for jquery in product page with keyword "wishlist", but didn't find at all. So, where does this even is handled? And how can I implement it on Category Page?