Twig variables & examples
Zuletzt aktualisiert
{% if lineItem.payload.options|length >= 1 %}
<br/>
{% for option in lineItem.payload.options %}
{{ option.group|sw_sanitize(null, true) }}: {{ option.option|sw_sanitize(null, true) }}
{% if lineItem.payload.options|last != option %} {{ " | " }} {% endif %}
{% endfor %}
{% endif %}{% for tax in lineItem.price.taxRules %}
{{ tax.taxRate }} %{% if loop.last %}{% else %}<br>{% endif %}
{% endfor %}