How can I add a YouTube video to a multirow section without getting a VideoUrlDrop error?

How can I add a YouTube video to a multirow section without getting a VideoUrlDrop error?

mm_sohel
Visitor
1 0 1

Hi,

I tried to add Youtube Video to Multirow section. Ihave created the url field by

{
"type": "video_url",
"id": "video",
"label": "Video URL",
"accept": [
"youtube",
"vimeo"
]
},

The field is created and working fine.

Then I call the video to the front end by

{% comment  %} video  {% endcomment %}
  {% if block.settings.video %}
     {{
       block.settings.video | video_tag: image_size: '1100px',
       autoplay: true,
       controls:true,
       muted:false,
       style: "height:100%;width:100%;max-width:100%"
     }}
  {% endif %}

But I am getting an error " Liquid error : video_tag does not support VideoUrlDrop"

Could you please help me to solve the issue? Thanks in advance. 

Replies 0 (0)