1

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?

Andronicus
  • 25,419
  • 17
  • 47
  • 88
Anmol singh
  • 158
  • 1
  • 12
  • While on a category page if you type in `wishlist.add(56);` in the browser console end hit `return` do you get an error message? – Daniel Jan 18 '20 at 13:12
  • Yes, Solved. When i change '$product_id;' to '$product['product_id'];', then it has an ID(Like: wishlist.add(56)). – Anmol singh Jan 18 '20 at 15:42

1 Answers1

0

Yes, Solved.

When I change

$product_id;

to

$product['product_id'];

Then it has an ID(Like: wishlist.add(56)).

Mujahid Bhoraniya
  • 1,518
  • 10
  • 22
Anmol singh
  • 158
  • 1
  • 12