Alchemy Theme : How to Add Whatsapp sharing Icon on the Product Page

Hi, I will like to add a whatsapp sharing icon to my product listing and wondering how can I do it? Here’s the code for my current social-sharing.liquid file.

Thanks!


{{ 'general.social.share_heading' | t }}

Here is the updated code for you,


{{ 'general.social.share_heading' | t }}

- {% render 'svg-facebook' %}
  {{ 'general.social.share_on_facebook' | t }}

- {% render 'svg-twitter' %}
  {{ 'general.social.share_on_twitter' | t }}

{% if share_image %}
- {% render 'svg-pinterest' %}
  {{ 'general.social.share_on_pinterest' | t }}

{% endif %}
- [
        
          Share on Whatsapp
        ](https://api.whatsapp.com/send?text={{ share_title | url_param_escape }} {{ shop.url | append: share_permalink }})
    

1 Like

Thanks! It works :slightly_smiling_face: