I tried adding JSON-LD markup to VideoObject, but as far as I understood, it didn’t work(
<div class="container22" style="text-align: center;">
<video
id="myVideo"
class="_Media_3mr5a_1"
autoplay
muted
loop
playsinline
controls
poster="https://cdn.shopify.com/s/files/1/0590/1913/3106/files/preview_images/2713f881da8f4f81a8424c0ef72460c6.thumbnail.0000000000.jpg?v=1707678319"
controlslist="nodownload"
style="width:100%; max-width:1118px;"
>
<source src="https://cdn.shopify.com/videos/c/o/v/2713f881da8f4f81a8424c0ef72460c6.mp4" type="video/mp4">
</video>
</div>
<!-- JSON-LD разметка для индексации -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "VideoObject",
"name": "Hey, wir sind Holystore!",
"description": "Eine kleine Modebewegung mit großer Botschaft – direkt aus dem Herzen Deutschlands.
Mit Leidenschaft für modernen, christlich inspirierten Style bringen wir Glauben, Hoffnung und Liebe auf deine Lieblingsshirts. Entdecke jetzt unsere Kollektion und trage deinen Glauben mit Stil – mit Holystore",
"thumbnailUrl": "https://cdn.shopify.com/s/files/1/0590/1913/3106/files/preview_images/2713f881da8f4f81a8424c0ef72460c6.thumbnail.0000000000.jpg?v=1707678319",
"uploadDate": "2025-11-07T02:38:00Z",
"contentUrl": "https://cdn.shopify.com/videos/c/o/v/2713f881da8f4f81a8424c0ef72460c6.mp4",
"embedUrl": "https://cdn.shopify.com/videos/c/o/v/2713f881da8f4f81a8424c0ef72460c6.mp4"
}
</script>
How do I properly arrange a video on the main page (in custom liquid) of Shopify so that Google can index it?
I would be grateful for any recommendations or working examples.
Here is the corrected version of your code. You can replace your existing Custom Liquid block with this. I’ve highlighted the key changes and what you need to fill in.
<div class="container22" style="text-align: center; margin-bottom: 20px;">
<video
id="myVideo"
class="_Media_3mr5a_1"
autoplay
muted
loop
playsinline
controls
poster="https://cdn.shopify.com/s/files/1/0590/1913/3106/files/preview_images/2713f881da8f4f81a8424c0ef72460c6.thumbnail.0000000000.jpg?v=1707678319"
controlslist="nodownload"
style="width:100%; max-width:1118px;"
>
<source src="https://cdn.shopify.com/videos/c/o/v/2713f881da8f4f81a8424c0ef72460c6.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
JSON-LD Structured Data for Google
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "VideoObject",
"name": "Hey, wir sind Holystore!",
"description": "Eine kleine Modebewegung mit großer Botschaft – direkt aus dem Herzen Deutschlands. Mit Leidenschaft für modernen, christlich inspirierten Style bringen wir Glauben, Hoffnung und Liebe auf deine Lieblingsshirts. Entdecke jetzt unsere Kollektion und trage deinen Glauben mit Stil – mit Holystore",
"thumbnailUrl": "https://cdn.shopify.com/s/files/1/0590/1913/3106/files/preview_images/2713f881da8f4f81a8424c0ef72460c6.thumbnail.0000000000.jpg?v=1707678319",
"uploadDate": "2024-02-11T12:00:00+00:00",
"duration": "PT0M15S",
"contentUrl": "https://cdn.shopify.com/videos/c/o/v/2713f881da8f4f81a8424c0ef72460c6.mp4",
"embedUrl": "https://holystore.de",
"interactionStatistic": {
"@type": "InteractionCounter",
"interactionType": { "@type": "WatchAction" },
"userInteractionCount": 0
}
}
</script>