Created
December 21, 2022 08:43
-
-
Save liamgriffin/2756c8a292d39ec187a519529f0f8d76 to your computer and use it in GitHub Desktop.
Shopify theme section that displays videos which are uploaded via the Shopify admin
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="video-section"> | |
<h2>{{ section.settings.heading }}</h2> | |
{{ section.settings.video | video_tag }} | |
</div> | |
{% schema %} | |
{ | |
"name": "Video", | |
"settings": [ | |
{ | |
"type": "text", | |
"id": "heading", | |
"label": "Video section heading", | |
"default": "Title" | |
}, | |
{ | |
"type": "video", | |
"id": "video", | |
"label": "A Shopify-hosted video" | |
} | |
], | |
"presets": [ | |
{ | |
"name": "Hosted Video" | |
} | |
] | |
} | |
{% endschema %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment