Я хочу отобразить опцию монограммы, если выбрана опция «Да». Но приведенный ниже код не работает.
{% for product_option in product.options_with_values %}
{% if product_option.selected_value == 'Yes' %}
<div class="product-custombox">
<p class="line-item-property__field">
<label for="embossing">Engrave</label>
<input required class="required" id="embossing" type="text" name="properties[Engrave]">
</p>
</div>
{%- endif -%}
{%- endfor -%}