Skip to content

Instantly share code, notes, and snippets.

@ed-codes
Created September 14, 2017 10:02
Show Gist options
  • Save ed-codes/bb3f27274bf44cfcc8e7d83daac7ad7d to your computer and use it in GitHub Desktop.
Save ed-codes/bb3f27274bf44cfcc8e7d83daac7ad7d to your computer and use it in GitHub Desktop.
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Product",
"name": "{{ product.title }}",
"image": [
"{{ product.featured_image }}"
],
"description": "{{ product.description | replace: '"', '\"' }}",
"mpn": "{{ product.variants.first.sku }}",
"brand": {
"name": "{{product.vendor}}"
},
"offers": {
"@type": "Offer",
"priceCurrency": "{{ shop.currency }}",
"price": "{{ product.price | money_without_currency }}",
"availability": "http://schema.org/{% if product.available %}InStock{% else %}OutOfStock{% endif %}",
"seller": {
"@type": "Organization",
"name": "{{shop.name}}"
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment