Re: Show Barcode Number on product page with Testament theme

Show Barcode Number on product page with Testament theme

jordanbroad
New Member
10 0 0

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!

Replies 2 (2)

Small_Task_Help
Shopify Partner
1120 53 111

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>

 

To Get Shopify Experts Help, Click Here or E-mail - hi@ecommercesmalltask.com
About Us - We are Shopify Expert India
At Google My Business - Ecommerce Small Task - Hire Shopify Developers Ahmedabad
jordanbroad
New Member
10 0 0

Great, thank you so much. Can you please go a little more in depth on how to do what you explained? Beginner, thanks!