Created
September 6, 2021 10:10
-
-
Save liamgriffin/7ae61ddd90b0eac2e63dbcc665940a23 to your computer and use it in GitHub Desktop.
How to Create Shopify Blocks | Main Product section without blocks
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
<div class="product__info-container"> | |
<h2>{{ product.title }}</h2> | |
{{ product.price }} | |
{%- if product.vendor -%} | |
<p>{{ product.vendor }}</p> | |
{%- endif -%} | |
<p>{{ product.description }}</p> | |
.... | |
</div> | |
{% schema %} | |
{ | |
"name": "Main product section" | |
} | |
{% endschema %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment