How to show Shopify Featured Image in Blog Posts
Put the code, where you want to show featured image in shopify blog / article
{% if article.image %}
{% assign image_alt = article.title | escape %}
{% endif %}
{% if article.image %}
{% assign image_alt = article.title | escape %}
{{ article | img_url: '1024x1024' | img_tag: image_alt, 'article__image' | link_to: article.url }}
{% endif %}