If having currencies such as AUD, CAD, USD or SEK, NOK, DKK it can get confusing which currency you are paying with in the checkout.
So the short symbol ($,kr} if not enough, add form.currency and also rework the snippets to use the same markup on the summary.
Maybe use <dl><dt><dd> on the field value pairs instead of <p>, <strong>,<div>,<span>. Also avoid multiple translations, I noted that there is {{ 'Total amount (incl VAT)' | t }} in several forms... instead have {{ 'Total amount' | t }} and {{ 'incl. VAT' | t }} and then use those. Also, why have these in separate snippets, it's just confusing to edit. I'd have them in the checkout template to keep it simple.
If having currencies such as AUD, CAD, USD or SEK, NOK, DKK it can get confusing which currency you are paying with in the checkout.
So the short symbol ($,kr} if not enough, add
form.currencyand also rework the snippets to use the same markup on the summary.Maybe use
<dl><dt><dd>on the field value pairs instead of<p>, <strong>,<div>,<span>. Also avoid multiple translations, I noted that there is{{ 'Total amount (incl VAT)' | t }}in several forms... instead have{{ 'Total amount' | t }}and{{ 'incl. VAT' | t }}and then use those. Also, why have these in separatesnippets, it's just confusing to edit. I'd have them in the checkout template to keep it simple.