Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
my video player is not playing videos and the controls seem to be greyed out
{% schema %}
{
"name": "VideoHeaderPersonalizado",
"settings": [
{
"type": "video",
"id": "video",
"label": "self-hosted video"
},
{
"type": "url",
"id": "VideoLink",
"label": "Video Link"
}
],
"presets": [
{
"name": "VideoHeaderPersonalizado"
}
]
}
{% endschema %}
<div class="videoContainer">
<a href="{{ section.settings.VideoLink}}" {% if section.settings.VideoLink == blank %}style="pointer-events: none;"{% endif %}>
<video class="HeaderVideo" src="{{ section.settings.video | video_tag: autoplay: false, loop: false, muted: true, controls: true, image_size:'1902x684' }}"></video>
</a>
</div>
<style>
.videoContainer{
border: 2px solid white;
}
video.HeaderVideo {
width: 100%;
object-fit: cover;
height: 800px;
}
</style>
Hi @PrimeMeats
The problem was you were adding two video tags in your code. I fix the code, please see below. I am not sure what the a tag for but I comment it out.
<style>
.videoContainer{
border: 2px solid white;
}
video.HeaderVideo {
width: 100%;
object-fit: cover;
height: 800px;
}
</style>
<div class="videoContainer">
<!--
<a
href="{{ section.settings.VideoLink}}"
{% if section.settings.VideoLink == blank %}
style="pointer-events: none;"
{% endif %}
>
</a>
-->
{{
section.settings.video
| video_tag: autoplay: false, loop: false, muted: true, controls: true, image_size: '1902x684', class: 'HeaderVideo'
}}
</div>
{% schema %}
{
"name": "VideoHeaderPersonalizado",
"settings": [
{
"type": "video",
"id": "video",
"label": "self-hosted video"
},
{
"type": "url",
"id": "VideoLink",
"label": "Video Link"
}
],
"presets": [
{
"name": "VideoHeaderPersonalizado"
}
]
}
{% endschema %}
Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025Learn how to increase conversion rates in every stage of the customer journey by enroll...
By Shopify Mar 5, 2025