Skip to content

Instantly share code, notes, and snippets.

@SaraJo
SaraJo / fb-open-graph.liquid
Last active September 15, 2017 16:42 — forked from chrisjhoughton/fb-open-graph.liquid
Facebook Open Graph meta tags and Twitter card tags for Shopify. Add this as a snippet called "twitter-and-fb-graph.liquid" in your theme, and then add {% include 'twitter-and-fb-graph' %} to your theme.liquid file. Make sure to update with your fb appId and your Twitter handle.
<meta property="fb:app_id" content="xxxxx">
<meta name="twitter:site" content="@your-handle-here" />
<meta name="twitter:card" content="summary" />
{% if template contains 'product' %}
<meta property="og:type" content="product">
<meta name="twitter:title" content="{{ product.title | strip_html | escape }}" />
<meta property="og:title" content="{{ product.title | strip_html | escape }}">
<meta property="og:category" content="{{ product.type }}" />