Hi,
I have a custom metafield which populate URLs of the several images separated by comma, for example, "https://cdn.shopify.com/s/files/1.jpg, https://cdn.shopify.com/s/files/1.jpg ".
I wanted to apply img_url filter to these URLs so I wrote the code like below(example):
{% assign images = custom_fields | split: "," %}
{% assign image_url = images[0] | img_url: '100x100' %}
<p>{{ image_url }}</p>
This code shows me the default Shopify link for no images.
I tried file_img_url filter instead but same result.
How can I get resized image link from string variable?
Regards,
Toby