简体   繁体   中英

Add to wishlist button on Category Page Opencart:2.3.0.2

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?

Yes, Solved.

When I change

$product_id;

to

$product['product_id'];

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM