Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save milkbottlelough/19cef9bda666d0dfea1d5fe586aa2ec2 to your computer and use it in GitHub Desktop.
Save milkbottlelough/19cef9bda666d0dfea1d5fe586aa2ec2 to your computer and use it in GitHub Desktop.
Get Youtube video thumbnail from Youtube URL in Shopify Liquid
{% assign video_url = 'https://www.youtube.com/watch?v=R5jIoLnL_nE' %}
{% assign thumbnail_url = '' %}
{% assign video_id = video_url | split: '/' | last %}
{% assign video_id = video_id | split: '?' | last %}
{% assign video_id = video_id | split: 'v=' | last %}
{% if video_id != blank %}
{% assign thumbnail_url = 'http://img.youtube.com/vi/' | append: video_id | append: '/maxresdefault.jpg' %}
{% endif %}
{{ thumbnail_url }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment