Created
January 4, 2023 14:28
-
-
Save shopifypartners/7b84dca6dd259d42986f4970d68600c3 to your computer and use it in GitHub Desktop.
Example of a Shopify theme section displaying a video uploaded via the store admin
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
<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