Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
I'm using an impulse theme
I have placed a video on the home banner
always i have to press the play button to play the video and the same on mobile
please help to fix the issue
this is the code I used
<video id="Mp4Video-f23891aa-1f4e-42aa-874f-22c9b764805f" src="https://cdn.shopify.com/videos/c/o/v/86b6fcd7631541de862005aa719714b6.mp4" autoplay="autoplay" loop="loop" unmuted="unmuted" playsinline="playsinline" controls="controls" preload="none"></video>
Hi ^^, try this:
<video id="Mp4Video-f23891aa-1f4e-42aa-874f-22c9b764805f"
src="https://cdn.shopify.com/videos/c/o/v/86b6fcd7631541de862005aa719714b6.mp4"
autoplay="autoplay" loop="loop" playsinline="playsinline"
preload="none" muted="muted">
</video>
<script>
document.addEventListener('DOMContentLoaded', function() {
var video = document.getElementById('Mp4Video-f23891aa-1f4e-42aa-874f-22c9b764805f');
video.play();
});
</script>
I added a script to play the video when the page loads. Let me know if that works for you.
Discover how to increase customer engagement on your store with articles from Shopify A...
By Jacqui Apr 23, 2025Hey Community 👋 Did you know that March 15th is National Everything You Think Is W...
By JasonH Apr 1, 2025Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025