How can I add an 'Add to Wishlist' button to my theme?

Hi

I am currently working on a theme. And want to display ( Add to Wishlist ) button. So any suggestion how i add this functionality. Thank You!

Hello @SunilJakhar

1 Create a new snippet

2 Add name as your choice

3 Pest the bottom code and include this snippet to add wishlist.

4 Change wishlist icon as your requirement I have use SVG


  {% if template.suffix == "wishlist" %}{% include "svg-delete-icon" %}
  {% else %}{% include "svg-heart" %}
  {% endif %}

1 Like

But how to change a Wishlist icon. I want to use SVG. It is not working.

@MyCodeMagic I’m learning now can you tell me?

Thank You!

Hello @SunilJakhar

I have replaced SVG with font-awesome icons, please check and try this code :slightly_smiling_face:


  {% if template.suffix == "wishlist" %}
  {% else %}
  {% endif %}

If you like and feel good, write and accept it as a solution