How can I add a video poster URL on the video_tag? I get this issue
Liquid syntax error (line 17): Unexpected character " in “{{ block.settings.video | video_tag: autoplay: false, loop: true, muted: false, controls: true, image_size: “600px”, poster:”{{ section.settings.cover_image | img_url: ‘master’ }}"
This is my code
{{ block.settings.video | video_tag: autoplay: false, loop: true, muted: false, controls: true, image_size: "600x", poster:"{{ section.settings.cover_image | img_url: 'master' }}" }}
{% schema %}
{
"name": "Videos",
"settings": [
{
"type": "text",
"id": "heading",
"label": "Heading",
"default": "Videos Section"
}, {
"type": "url",
"id": "button_link",
"label": "Button link"
}, {
"type": "text",
"id": "button_label",
"label": "Button Label",
"default": "Shop Now"
}
],
"max_blocks": 4,
"blocks": [
{
"type": "video",
"name": "Video",
"settings": [
{
"type": "text",
"id": "title",
"label": "Title",
"default": "Lorem ipsum dolor sit amet. Lorem ipsum"
}, {
"type": "video",
"id": "video",
"label": "A Shopify-hosted video"
} ,{
"type": "image_picker",
"id": "cover_image",
"label": "poster"
}
]
}
]
}
{% endschema %}