I am developing a website with the Editions theme.
On a collection page, I want to specify which product has variants by adding a line to product-item that says more options available.
How would I go about doing this?
I am developing a website with the Editions theme.
On a collection page, I want to specify which product has variants by adding a line to product-item that says more options available.
How would I go about doing this?
Use the product object properties to check for more than 1 variant
{%- unless product.has_only_default_variant -%} More Options Available {%- endunless -%}
https://shopify.dev/docs/api/liquid/objects/product#product-has_only_default_variant
Or check the variants array size
{%- if product.variants.size > 1 -%} More Options Available {%- endif -%}
https://shopify.dev/docs/api/liquid/objects/product#product-variants
Or the options,etc etc
https://shopify.dev/docs/api/liquid/objects/product#product-options