Zum Hauptinhalt springen
Alle KollektionenEntwickler
Referenz-Leitfaden zur Liquid-Variablen
Referenz-Leitfaden zur Liquid-Variablen
Pavlo avatar
Verfasst von Pavlo
Vor über einem Monat aktualisiert

Verfügbare Variablen

Die folgenden Variablen können bei der Interaktion mit Bestellungen und E-Mail-Vorlagen verwendet werden.

{{ attributes.Checkout-Method }}
{{ attributes.Pickup-Location-Company }}
{{ attributes.Pickup-Location-Address-Line-1 }}
{{ attributes.Pickup-Location-Address-Line-2 }}
{{ attributes.Pickup-Location-City }}
{{ attributes.Pickup-Location-Id }}
{{ attributes.Pickup-Location-Region }}
{{ attributes.Pickup-Location-Postal-Code }}
{{ attributes.Pickup-Location-Country }}
{{ attributes.Pickup-Date }}
{{ attributes.Pickup-Time }}
{{ attributes.Delivery-Date }}
{{ attributes.Delivery-Time }}
{{ attributes.Delivery-Note }}
{{ attributes.Delivery-Day }}
{{ attributes.Delivery-Location-Id }}
{{ attributes.Custom-Attribute-1 }}
{{ attributes.Custom-Attribute-2 }}
{{ attributes.Custom-Attribute-3 }}
{{ attributes.Shipping-Date }}

Zwischen Abholung, Zustellung und Versand unterscheiden

Wenn Sie basierend auf der Checkout-Methode unterschiedliche Inhalte anzeigen möchten, verwenden Sie die attributes.Checkout-Method

{% if attributes.Checkout-Method == "pickup" %}
Das ist eine Abholbestellung.
{% endif %}
{% if attributes.Checkout-Method == "delivery" %}
Das ist eine Zustellbestellung.
{% endif %}
{% if attributes.Checkout-Method == "shipping" %}
Das ist eine Versandbestellung.
{% endif %}
Hat dies deine Frage beantwortet?