Last active
June 11, 2025 09:34
-
-
Save joe-dempsey/3b7fc7109a07c633c7fd5da22d5d462e to your computer and use it in GitHub Desktop.
Shopify product richsnippet - structured data markup for Shopify product templates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% assign current_variant = product.selected_or_first_available_variant %} | |
<div id="richsnippet"> | |
<div itemscope itemtype="http://schema.org/Product"> | |
<meta itemprop="url" content="{{ shop.url }}{{ product.url }}"> | |
<meta itemprop="image" content="{{ product.featured_image.src | img_url: 'grande' }}"> | |
<meta itemprop="name" content="{{ product.title | escape }}"> | |
<meta itemprop="description" content="{{ product.description | strip_html }}"> | |
{% if product.vendor %}<meta itemprop="brand" content="{{ product.vendor }}">{% endif %} | |
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer"> | |
<meta itemprop="priceCurrency" content="{{ shop.currency }}"> | |
<meta itemprop="price" content="{{ current_variant.price | money_without_currency }}"> | |
<link itemprop="availability" href="http://schema.org/{% if product.available %}InStock{% else %}OutOfStock{% endif %}"> | |
<meta itemprop="seller" content="{{ shop.domain }}"> | |
<meta itemprop="itemcondition" itemtype="http://schema.org/OfferItemCondition" content="http://schema.org/NewCondition" /> | |
</div> | |
</div> | |
</div> | |
Note the Google prefers JSON and not itemprop
Read the full article on richsnippets for Shopify here.
shopify seo agency, ecommerce website development, jewelery marketing agency,
beauty digital marketing agency
, website design company in mumbai, shopify marketing agency, shopify website design services, web design agency, shopify development agency, hotel seo services, real estate seo services, restaurant branding agency, real estate branding agency, real estate branding agency in mumbai, travel website development company
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm still getting warnings for missing SKU