All things Shopify and commerce
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi, thank you all for your help. I need to show the barcode on the product page next to the SKU. I have found posts online, but they are only for the DAWN theme. I am using the Testament theme.
Thanks!
Hi,
First create a Barcode Metafield
Then you need to add barcode with SKU code ,
Example
<div class="product-details">
<p>SKU: {{ product.sku }}</p>
{% if product.metafields.custom.barcode %}
<p>Barcode: {{ product.metafields.custom.barcode }}</p>
{% endif %}
</div>
Great, thank you so much. Can you please go a little more in depth on how to do what you explained? Beginner, thanks!