Last active
September 5, 2024 18:57
-
-
Save tvpmb/f61f03083ba450791ecffb302075bc63 to your computer and use it in GitHub Desktop.
Creatable Carousel Section for Shopify
This file contains 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
{% schema %} | |
{ | |
"name": "Creatable Widget Section", | |
"tag": "section", | |
"class": "section section-creatable-carousel", | |
"disabled_on": { | |
"groups": ["header", "footer"] | |
}, | |
"blocks": [], | |
"settings": [ | |
{ | |
"id": "custom_embed_code", | |
"type": "html", | |
"label": "Embed code" | |
} | |
], | |
"presets": [ | |
{ | |
"name": "Creatable Widget Section", | |
"category": "" | |
} | |
] | |
} | |
{% endschema %} | |
{% stylesheet %} | |
{% endstylesheet %} | |
{% javascript %} | |
{% endjavascript %} | |
<div class="isolate{% unless section.settings.full_width %} page-width{% endunless %}" id="creatable-carousel-no-title"> | |
<script> var pid = "{{ product.id }}";</script> | |
<div class="rich-text content-container color-{{ section.settings.color_scheme }} gradient{% if section.settings.full_width %} rich-text--full-width content-container--full-width{% endif %} section-{{ section.id }}-padding"> | |
{{ section.settings.custom_embed_code }} | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment