I am using a custom files metafield on my product page, to display a list of icon attributes (i.e. awards) on certain products where I’ve uploaded the corresponding image:
I have the following liquid snippet in place to parse whether or not to display anything:
{% if product.metafields.custom.product_page_iconslist != blank %}
{{ product.metafields.custom.product_page_iconslist | img_tag }}
{% endif %}
The good news is, the image displays where appropriate, however, something is causing the image to be resized (shrunk):
When I inspect the code, I see that “_small” is being appended to the filename. I’ve tried resizing the image, but that doesn’t seem to do anything, and I can’t figure out how to display the image as intended, and with the current sizing, the image is illegible. Any suggestions on how I can resolve this?

