Skip to content

Instantly share code, notes, and snippets.

@Cam
Last active September 17, 2018 09:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Cam/15c72aa5017c57d05fbebd328a04bfc4 to your computer and use it in GitHub Desktop.
Save Cam/15c72aa5017c57d05fbebd328a04bfc4 to your computer and use it in GitHub Desktop.
Handy ‘lite’ Shopify sharing code
<!-- Sharing is caring, with love from Cam -->
{% if template contains 'product' %}
<ul class="social-sharing inline-list">
<li title="Share on Twitter"><a target="_blank" href="https://twitter.com/intent/tweet?text={{ product.title | truncate: 30 }}&url=http%3A%2F%2F{{ shop.domain }}{{ product.url | replace: '/', '%2F' }}&via=YOURTWITTERNAME">Share on Twitter</a></li>
<li title="Share on Facebook"><a target="_blank" href="http://www.facebook.com/sharer/sharer.php?u=http://{{ shop.domain }}{{ product.url }}">Share on Facebook</a></li>
<li title="Share on Google+"><a target="_blank" href="https://plus.google.com/share?url=http://{{ shop.domain }}{{ product.url }}">Share on Google+</a></li>
<li title="Share on LinkedIn"><a target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&url=http://{{ shop.domain }}{{ product.url }}&title={{ product.title | truncate: 30 }}&summary={{ product.description | strip_html | truncate: 240 }}&source=http://{{ shop.domain }}{{ product.url }}">Share on LinkedIn</a></li>
<li title="Share on Pinterest"><a target="_blank" href="http://pinterest.com/pin/create/button/?url=http://{{ shop.domain }}{{ product.url }}&description={{ product.description | strip_html | truncate: 240 }}&media={{ product.featured_image.src | product_img_url: 'large' }}">Share on Pinterest</a></li>
</ul>
{% else %}
<ul class="social-sharing inline-list">
<li title="Share on Twitter"><a target="_blank" href="https://twitter.com/intent/tweet?text={{ article.title }}&url=http%3A%2F%2F{{ shop.domain }}{{ article.url | replace: '/', '%2F' }}&via=YOURTWITTERNAME">Share on Twitter</a></li>
<li title="Share on Facebook"><a target="_blank" href="http://www.facebook.com/sharer/sharer.php?u=http://{{ shop.domain }}{{ article.url }}">Share on Facebook</a></li>
<li title="Share Google+"><a target="_blank" href="https://plus.google.com/share?url=http://{{ shop.domain }}{{ article.url }}">Share on Google+</a></li>
<li title="Share on LinkedIn"><a target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&url=http://{{ shop.domain }}{{ article.url }}&title={{ article.title }}&summary={{ article.content | strip_html | truncate: 240 }}&source=http://{{ shop.domain }}{{ article.url }}">Share on LinkedIn</a></li>
<li title="Share on Pinterest"><a target="_blank" href="http://pinterest.com/pin/create/button/?url=http://{{ shop.domain }}{{ article.url }}&description={{ article.content | strip_html | truncate: 240 }}&media={% assign my_image_url=article.content | escape %}{% if my_image_url contains '&lt;img' %}{% assign my_image_url = my_image_url | split: 'src=&quot;' %}{% assign my_image_url = my_image_url[1] | split: '&quot;' %}{% assign my_image_url = my_image_url[0] | remove: '//cdn' %}{% assign my_image_url = my_image_url | remove: 'http:http://'; %}{% assign my_image_url = my_image_url | remove: 'https:' %}{{ my_image_url | prepend: 'http://cdn';}}{% endif %}">Share on Pinterest</a></li>
</ul>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment