我正在使用Shopify,并尝试将类添加到每个不可用的变体中。 这是我用来为每个变体创建按钮-
{%- for value in option.values -%}
<button type="button" class="Popover__Value {% if value == option.selected_value %}is-selected{% endif %} Heading Link Link--primary u-h6"
data-value="{{ value | escape }}"
data-option-position="{{ option.position }}"
{% if is_option_with_color_swatch %}
data-background-color="{{ value | replace: ' ', '' }}"
data-background-image="{{ value | handle | append: '.png' | asset_url }}"
{% endif %}
data-action="select-value">
{{- value | escape -}}
</button>
{%- endfor -%}
我试图添加类似的内容,以检查哪个变体不可用但不起作用-
{%- assign is_available = false -%}
{%- if variant.available -%}
{%- assign is_available = true -%}
{%- endif -%}
请帮忙。