show file list metafield on shopify storefront

PHOTO EMBED

Sun Feb 16 2025 20:31:58 GMT+0000 (Coordinated Universal Time)

Saved by @procodefinder

{% assign file = page.metafields.custom.files.value %}
{% if file %}
 {% for image in file %}
  <img src="{{ image | img_url: 'master'}}" max-width='100%' display='block'>
 {% endfor %}
{% endif %}
{% style %}
img {
  display: block;
  max-width: 100%;
  margin: auto !important;
}
{% endstyle %}
content_copyCOPY