display url list metafield

PHOTO EMBED

Tue Feb 25 2025 02:03:09 GMT+0000 (Coordinated Universal Time)

Saved by @procodefinder

{% if product.metafields.custom.file_url != blank %}
  <ul>
    {% for url in product.metafields.custom.file_url.value %}
      <li>
        <a href="{{ url }}" target="_blank">📄 Download PDF</a>
      </li>
    {% endfor %}
  </ul>
{% endif %}
content_copyCOPY