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

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
1144 55 112

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 Developers 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!