Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
I am unable to connect Dynamic sources to file metafields. Is there a workoaround to this? I only seem to be able connect Rich/Single line text.
This is the error I get once i code in the file reference metafield name:
{{ product.metafields.custom.product_installation_pdf }}
Any help?
Hey @Deanosaurus ,
You can't use a file directly as a metafield as of now. Files are only available in image pickers.
Here is the custom liquid to add pdf via metafields.
{% if product.metafields.custom.product_installation_pdf != blank %}
<a
href="{{ product.metafields.custom.product_installation_pdf | file_url }}"
style="text-decoration: underline;"
target="_blank"
>
Download Manual
</a>
{% endif %}
If you want the file to be downloaded instead of opening in a new tab, use the following.
{% if product.metafields.custom.product_installation_pdf != blank %}
<a
href="{{ product.metafields.custom.product_installation_pdf | file_url }}"
style="text-decoration: underline;"
target="_blank"
download
>
Download Manual
</a>
{% endif %}
♥ If you found my solution helpful, please consider giving it a Like and marking it as the ✔ Accepted Solution
Try our WhatsApp Chat Button Widget with multipe agents.Supachat: WhatsApp Chat Button
A Product of Maverick Studio
That's not entirely true - My shop has metafield with file, and it displays on my products as PDF. What I'm trying to replicate is the same / or have liquid code in those tabs.
As for the custom liquid code you just pasted, I got a better one, which basically makes the field empty unless you populate the metafield with the file.
{% unless product.metafields.custom.product_installation_pdf.value.url == null %}
<a target="_blank" href="{{ product.metafields.custom.product_installation_pdf
.value.url }}">Download Product Installation PDF</a>
{% endunless %}
By investing 30 minutes of your time, you can unlock the potential for increased sales,...
By Jacqui Sep 11, 2024We appreciate the diverse ways you participate in and engage with the Shopify Communi...
By JasonH Sep 9, 2024Thanks to everyone who participated in our AMA with 2H Media: Marketing Your Shopify St...
By Jacqui Sep 6, 2024