Show the list of product options in catalog

Hello @Delio

Please use the following liquid code in order to get the list of options:

{% if card_product.options.size > 0 %}
  {% for product_option in card_product.options_with_values %}
   - {{ product_option.name  }} :     
    {% for product_option_val in product_option.values  %}
      {{ product_option_val  }},
    {% endfor %}
  {% endfor %}
{% endif %}

Please hit Like and Mark it as a Solution if you find our reply helpful.

1 Like