Instagram sharing on product page Impulse theme

Topic summary

A user working with Shopify’s Impulse theme wants to add Instagram to the social sharing buttons displayed below product descriptions.

Current situation:

  • The theme’s social-sharing.liquid file contains code for Facebook, Pinterest, and Twitter sharing buttons
  • The user needs guidance on how to extend this existing code to include Instagram

Technical context:

  • The code uses Liquid templating with conditional statements checking theme settings (e.g., settings.share_facebook)
  • Each social platform has its own sharing URL structure and SVG icon
  • The implementation follows a consistent pattern across platforms

Status: The question remains unanswered with no solutions or workarounds provided yet. This is a customization request requiring knowledge of both Liquid templating and Instagram’s sharing capabilities.

Summarized with AI on November 9. AI used: claude-sonnet-4-5-20250929.

I am using impulse theme and I want to add “instagram” to the list of social sharing that is right below the product description.
I have this code in my social-sharing.liquid, how do I add instagram to it ?

{%- if settings.share_facebook -%} {{ 'general.social.share_on_facebook' | t }} {{ 'general.social.alt_text.share_on_facebook' | t }} {%- endif -%}

{%- if settings.share_twitter -%}

twitter
{{ ‘general.social.share_on_twitter’ | t }}
{{ ‘general.social.alt_text.share_on_twitter’ | t }}

{%- endif -%}

{%- if settings.share_pinterest -%}


{{ ‘general.social.share_on_pinterest’ | t }}
{{ ‘general.social.alt_text.share_on_pinterest’ | t }}

{%- endif -%}

Thank you in advance.