Hi @the-gallery
You can do that by adding this code to theme.liquid file in Online store > Themes > Edit code before tags
{% if template == 'index' %}
{% else %}
{% endif %}
A user seeks to restrict a video section’s visibility to only the homepage of their Shopify store.
Solution Provided:
Another participant offers a code snippet to be added to the theme.liquid file:
</head> tagsOutcome:
The original poster confirms the solution worked successfully.
Technical Context:
This involves Shopify theme customization using Liquid template language to conditionally display content based on page type.
Hi @the-gallery
You can do that by adding this code to theme.liquid file in Online store > Themes > Edit code before tags
{% if template == 'index' %}
{% else %}
{% endif %}