How to add a photo slideshow to your Shopify store
Want to impress your customers with lively eye-catching images right on your online store? Making a photo slideshow is a best way. In this article, we will go over how to create a photo...
Want to impress your customers with lively eye-catching images right on your online store? Making a photo slideshow is a best way. In this article, we will go over how to create a photo...
Previously, we often embed image into article content or article excerpt, after that we will use a code snippet get a first image from that and made featured image for this article.
1 2 3 4 5 6 7 8 9 | {% assign featured_image = article.excerpt_or_content | escape %} {% if featured_image contains '<img' %} {% assign featured_image = featured_image | split: 'src="' %} {% assign featured_image = featured_image[1] | split: '"' %} {% assign featured_image = featured_image[0] | remove: '//cdn' %} {% assign featured_image = featured_image | remove: 'http:'; %} {% assign featured_image = featured_image | remove: 'https:' %} {{ featured_image | prepend:'//cdn' | img_tag}} {% endif %} |
But...