Could someone help me display “More Options” text underneath the Product Title or Price in the products list, only if the product has more variants?
I’m using Craft theme:
A user seeks to display “More Options” text on product listings only when multiple variants exist, using the Craft theme.
Initial Solution Provided:
product-card snippet checking product.has_only_default_variantIssue Encountered:
Revised Solution:
{%- unless product.has_only_default_variant and product.variants.size > 1 -%}Status: The discussion appears to have provided a working solution, though final confirmation from the original poster is pending. The key is using proper Liquid conditionals to verify variant count before displaying the text.
Could someone help me display “More Options” text underneath the Product Title or Price in the products list, only if the product has more variants?
I’m using Craft theme:
You need to go to edit code → snippets → product-card find the price or title display and paste this code in
{%- unless product.has_only_default_variant -%}
More Options
{%- endunless -%}
This helped with displaying the message but it is displaying for ALL products, even if they only have one variant:
{%- unless product.has_only_default_variant and product.variants.size > 1 -%}
More Options
{%- endunless -%}