Hi community,
I’m using the PRESTIGE them for my store: https://www.hiroclark.com/
We use RICH TEXT IMAGE sections as headers for our collection pages and we would like to be able to insert a saque video loop instead of the image sometimes, for example to this page: https://www.hiroclark.com/collections/the-graham-co-x-hiro-clark
Please see below liquid code for the section.
Please let me know if someone can help ![]()
Thanks,
Antoine
{% for block in section.blocks %}
{% if block.settings.display == collection.handle %}
{{ block.settings.subheading | escape }}
{%- endif -%}{%- if block.settings.title != blank -%}
{{ block.settings.title | escape }}
{%- endif -%}{%- if block.settings.content != blank -%}
{%- if block.settings.link_text != blank -%}
{{ block.settings.link_text | escape }}
{%- endif -%}
{%- capture section_image -%}
{%- if block.settings.image != blank -%}
{% schema %}
{
“name”: “Rich text with image”,
“class”: “shopify-section–bordered”,
“settings”: ,
“blocks”: [
{
“type”: “hero”,
“name”: “Split hero”,
“settings”: [
{
“type”: “collection”,
“id”: “display”,
“label”: “Collection for display”
},
{
“type”: “text”,
“id”: “subheading”,
“label”: “Sub-heading”,
“default”: “Sub-heading”
},
{
“type”: “text”,
“id”: “title”,
“label”: “Heading”,
“default”: “Title”
},
{
“type”: “image_picker”,
“id”: “image”,
“label”: “Image”,
“info”: “1200 x 1200px .png recommended”
},
{
“type”: “select”,
“id”: “image_position”,
“label”: “Image position”,
“options”: [
{
“value”: “left”,
“label”: “Left”
},
{
“value”: “right”,
“label”: “Right”
}
],
“default”: “right”
},
{
“type”: “richtext”,
“id”: “content”,
“label”: “Text”,
“default”: “
Add your own custom content to give more information about your store, availability details…
”},
{
“type”: “text”,
“id”: “link_text”,
“label”: “Link text”
},
{
“type”: “url”,
“id”: “link_url”,
“label”: “Link URL”
}
]
}
]
}
{% endschema %}