Skip to main content
Product Documents

Display links to download manufacturer documents on your Shopify product page.

Updated over 11 months ago

Partbot Marketplace syncs manufacturer documentation, including fitting instructions and template files, typically in PDF or Word formats.

Add this liquid code snippet to your Product template to display a list of Document download links.

<div>
<ul>
{% for variant in product.variants %}
{% if variant.metafields.partbot.document.value %}
<li>
<a href="{{ variant.metafields.partbot.document.value }}" target="_blank" download>Download Instructions for ({{ variant.sku }})</a>
</li>
{% endif %}
{% endfor %}
</ul>
</div>

Style and customise this code snippet to match your website theme.

We recommend making a new Snippet file and including in your product template.

Did this answer your question?