Skip to content

Instantly share code, notes, and snippets.

@liamgriffin
Created September 6, 2021 10:12
Show Gist options
  • Save liamgriffin/c454c63e70a5dc7481e2e3378be1ff38 to your computer and use it in GitHub Desktop.
Save liamgriffin/c454c63e70a5dc7481e2e3378be1ff38 to your computer and use it in GitHub Desktop.
How to Create Shopify Blocks | Main Product blocks markup
{% for block in section.blocks %}
{% case block.type %}
{% when 'title' %}
<h2>{{ product.title | escape }}</h2>
{% when 'price' %}
{{ product.price }}
{% when 'vendor' %}
{%- if product.vendor -%}
<p>{{ product.vendor }}</p>
{%- endif -%}
{% when 'description' %}
<p>{{ product.description }}</p>
{% endcase %}
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment