Showing Barcode OR SKU on collections page? (Brooklyn Theme)

Solved

Showing Barcode OR SKU on collections page? (Brooklyn Theme)

ironquad
Tourist
9 1 7

Hello,

Is there an easy way to show either the SKU or Barcode (preferrable barcode) on the collections page for each product? 

 

Here is an example:

collections.png

I changed the vendor to "MAP" pricing for our website but I was hoping the barcode to show right below the vendor slot. However, as long as it shows somewhere next to each product is what I need. 


This is the barcode (or SKU) located on the product "page" where you insert the pictures, prices, etc. 

product.png

 

Thank you in advance!

Accepted Solution (1)

Kani
Shopify Partner
468 125 232

This is an accepted solution.

Hi @ironquad 

 

Kani_2-1663297111280.png

1: Online store > themes > Actions > Edit code > Snippets > product-grid-item.liquid

2: Insert it after your vendor code

Kani_0-1663297040385.png

 

 

{% if product.selected_or_first_available_variant.barcode %}
      <p>{{ product.selected_or_first_available_variant.barcode }}</p>
{% endif %}

 

 

Hey!! ʕ ᵔᴥᵔ ʔ
Please click 'Like' and ' Accept as Solution' to encourage me to continue sharing my expertise. ♡
If you need any technical assistance, feel free to send me a DM. You no longer have to search for answers without getting a response. 🙂

View solution in original post

Replies 2 (2)

Kani
Shopify Partner
468 125 232

This is an accepted solution.

Hi @ironquad 

 

Kani_2-1663297111280.png

1: Online store > themes > Actions > Edit code > Snippets > product-grid-item.liquid

2: Insert it after your vendor code

Kani_0-1663297040385.png

 

 

{% if product.selected_or_first_available_variant.barcode %}
      <p>{{ product.selected_or_first_available_variant.barcode }}</p>
{% endif %}

 

 

Hey!! ʕ ᵔᴥᵔ ʔ
Please click 'Like' and ' Accept as Solution' to encourage me to continue sharing my expertise. ♡
If you need any technical assistance, feel free to send me a DM. You no longer have to search for answers without getting a response. 🙂
ironquad
Tourist
9 1 7

Thank you so much!!!!