Hi,
I am using the following code to display a link to download a zip file added to a meta field
{% comment %}Custom Code to Show Custom File Uploaded to the customer order{% endcomment %}
<td> {% if order.metafields.custom.order_mockup_file %}
<a href="{{ order.metafields.custom.order_mockup_file.file}}" download>Download Customized File</a><br>
{% endif %}</td>
{% comment %}END of Custom Code to Show Custom File Uploaded to the customer order{% endcomment %}
but it keeps giving me the HTML file, not the zip file?