Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save stoll/f6f0c68a43fed754c505 to your computer and use it in GitHub Desktop.

Select an option

Save stoll/f6f0c68a43fed754c505 to your computer and use it in GitHub Desktop.
Shopify: Refund Notification in HTML (Danish)
{% if customer.name %}
<p>Hej, {{ customer.name }}!</p>
<p></p>
{% endif %}
<p>{{ shop_name }} har refunderet din ordre ({{ name }}) {% if amount > 0 %}til i alt {{ amount | money_with_currency }}{% endif %}{% if refund_line_items.size > 0 %} for:</p>
<p>
{% for line in refund_line_items %}
{{ line.quantity }} x {{ line.line_item.title }}</p>
{% endfor %}
{% else %}
.</p>
{% endif %}
<p></p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment