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
I want my sku numbers to be show in my product grid without having to click on eat individual product. This is a link to the website https://8f9289-8c.myshopify.com/collections/chevy-gmc
You can access the SKU by using product.first_available_variant.sku.
Depending on your theme the implementation may differ. For Dawn, this is located in card-product.liquid and you would need to access it using the variable name card_product.
{{ card_product.first_available_variant.sku }}
This could be place below product.title code for the following result.
Hope this helps
Simon