Skip to content

Instantly share code, notes, and snippets.

@ihorduchenko
Created December 29, 2021 18:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ihorduchenko/4427ed059479a597bcf2658d6948c0e6 to your computer and use it in GitHub Desktop.
Save ihorduchenko/4427ed059479a597bcf2658d6948c0e6 to your computer and use it in GitHub Desktop.
Shopify sections - "liquid" section type
{%- if section.settings.boxed -%}
<div class="grid-container contained">
{%- endif -%}
{{ section.settings.liquid }}
{%- if section.settings.boxed -%}
</div>
{%- endif -%}
{% schema %}
{
"name": "Custom liquid",
"tag": "section",
"class": "liquid-section",
"settings": [
{
"type": "checkbox",
"id": "boxed",
"label": "Boxed"
},
{
"type": "liquid",
"id": "liquid",
"label": "Liquid code"
}
],
"presets": [
{
"name": "Custom liquid",
"category": "Text"
}
]
}
{% endschema %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment