Notification variables reference
Notifications sent out from your store are rendered usingLiquid. Liquid is Shopify's simple, easy-to-use programming language. It's the same programming language that themes from theTheme Storeare built on.
To edit the notifications that are sent from your store, you canmake basic customizationsto your notification templates.
For help with more advanced changes, or to make changes to custom notification templates, you can reach out to the community on ourforums, or you can also hire a Shopify Expert to do your customizations for you. Learn more about hiringShopify Experts.
Here is a list of Liquid notification templates that you can customize from the Shopify admin:
- Abandoned checkout
- Contact customer
- Customer account invite
- Customer account welcome
- Customer account password reset
- Draft order invoice
- Fulfillment request
- Gift card created
- New order
- New order (mobile)
- Order invoice
- Order canceled
- Order confirmation
- Order refund
- Payment reminder
- POS and mobile receipt
- Shipping confirmation
- Shipping update
All templates in the Shopify admin have access to the properties of their corresponding order.
Order properties
Many properties of an order are available directly using Liquid, in templates, and in additional scripts.
The properties of an order are available in the following templates:
- Order confirmation
- New order
- New order (mobile)
- Order invoice
- Shipping confirmation
- Shipping update
- Additional scripts
- Fulfillment request
- Payment reminder
Property | Description |
---|---|
id |
A system wide unique ID of the order for internal use. Use the following example to generate a link to the order in the admin section of your shop. For example, in yourNew ordertemplate, you can add the following code: View order |
The email associated with the order. | |
name |
Typically this is a pound symbol followed by the Example: #1004 |
order_name |
Same as name. |
order_number |
Shop unique number of the order, without the pound # prefix, or any prefix or suffix added to the order ID by the shop-owner in their shop preferences. Example: 1004 |
created_at |
The date and time the customer created the order. You can format this using the date filter. Example: 2009-05-30T17:43:51+02:00 |
payment_terms |
Payment terms specify the date that payment for an order is due to be paid. Learn how toadd payment terms to order invoices. For more details, refer to the Liquid reference forpayment_terms. |
tags | Returns an array of all of the order's tags. The tags are returned in alphabetical order. Please see ourLiquid reference documentationfor more details. |
transactions | Returns an array oftransactionsfrom the order. |
tax_price |
The combined taxes of all the items in the order. |
tax_lines |
Taxes broken up by type of taxation:
|
tax_line.title |
The name of the tax. Examples: QST or VAT |
tax_line.price |
The amount. |
tax_line.rate |
The rate. It will return 0.175 if it is 17.5%. |
tax_line.rate_percentage |
The tax rate in human readable form. It will return 17.5 if the rate is 0.175. |
customer |
Customer object containing the attributes of thecustomeroutput. |
billing_address |
Thebilling address. |
billing_address.first_name |
First name of the customer. |
billing_address.last_name |
Last name of the customer. |
billing_address.company |
Company name for billing. |
billing_address.phone |
Phone number from the billing address. |
shop.name |
Name of your store. |
shop.phone |
Your store's phone number. |
subtotal_price |
Sum of the order's line-item prices after any line-item discount or cart discount has been deducted. The subtotal doesn't include taxes (unless taxes are included in the prices), shipping costs, or tips. |
discounts |
A list ofdiscounts. |
discounts_amount |
The amount of the discount applied by all discounts. Example: +$5.00 |
discounts_savings |
The amount of the savings caused by all discounts. Example: -$5.00 |
total_price |
Total of the order (subtotal + shipping cost - shipping discount + tax). |
financial_status |
The current payment status. One of: nil,pending ,authorized ,paid ,voided ,refunded . |
requires_shipping |
(boolean) Returns true if there is at least one item in the order that requires shipping. |
shipping_method.title |
The Shipping rate name. Example: Standard Shipping |
shipping_method.price |
The shipping price including any shipping discount. Example: |
shipping_price |
The shipping price. Example: |
shipping_address |
Theshipping address. |
shipping_address.first_name |
The first name for the shipping address. |
shipping_address.company |
Company name for shipping address. |
shipping_address.phone |
Phone number from the shipping address. |
line_items |
List of allLine Itemsin the order. |
item_count |
A sum of all the items' quantities. |
fulfillment_status |
The current fulfillment status of the order. One of:unfulfilled ,partial ,fulfilled . |
note |
The note which is attached to the order. The note can be obtained from the customer and/or edited in the order detail screen in your admin interface. |
attributes |
Anyattributeswhich were attached to the order. Example: |
referring_site |
Contains the url of the referrer that brought the customer to your store. Example: |
landing_site |
Contains the path of the landing site the customer used. This is the first page that the customer saw when he/she reached the store. Example: |
landing_site_ref |
Looks at the landing site and extracts a reference parameter from it. Reference parameters can be: If the {% if landing_site_ref == 'my-tracking-token' %} My action... {% endif %} |
cancelled |
(boolean) Returns true if the order has been canceled. |
cancelled_at |
The time when the order was canceled. |
cancel_reason |
时选择取消订单的原因。一个of:inventory ,customer ,declined ,fraud , orother . |
has_high_risks?(deprecated) |
Returns true if the order has high risk |
unique_gateways |
Returns a list of unique payment providers on an order. For example, if someone paid with a Visa, a Mastercard, and cash, the returned list would be |
location (POS only) |
Displays the physical location of the order. There are several location properties available, listedhere. You can configure locations in theLocations area of the admin. |
order_status_url |
Returns the link to the order status page for this order. |
fulfilled_line_items(deprecated) |
List ofLine Itemswhich have been fulfilled. |
unfulfilled_line_items(deprecated) |
List ofLine Itemswhich haven't been fully fulfilled. |
b2b吗? |
Returns true if the order is a B2B order. Use the property with B2B variables to display relevant information, such as the company name, company location, and address in emails. For example, on B2B orders, you might add a header to a template with the following information:
|
company |
Thecompanythat you’re selling to on a B2B order. |
company.name |
The name of the company on a B2B order. |
company.id |
The ID of the company on a B2B order. |
company_location |
Thelocationof the company on a B2B order. A company that buys from you can have more than one location. |
company_location.name |
The name of the company location on a B2B order. |
company_location.id |
The ID number of the company location on a B2B order. |
company_location.shipping_address |
Theshipping addressof the company location on a B2B order. |
company_location.billing_address |
Thebilling addressof the company location on a B2B order. |
customer_order_url |
Thenew order details pageof an order a customer requested a return for usingnew customer accounts. |
Draft order properties
Draft order properties are available on theDraft Order Invoiceemail template, which notifies your customers about outstanding invoices.
Property | Description |
---|---|
id |
A unique ID of the draft order for internal use. |
invoice_url |
A link the customer can follow to pay for the invoice using Shopify's secure checkout. |
reserve_inventory_until |
The date and time the line items in the draft are reserved until, for example, You can format dates using the Liquiddate filter. |
user |
The last staff who modified the draft order. |
user.name |
The name of the last staff who modified the draft order. |
user.email |
The email address of the last staff who modified the draft order. |
The email address associated with the draft order. | |
name |
The uniquenumber of the draft order, prefixed by a number sign# . |
number |
The unique number of the draft order without the order prefix or suffix. |
created_at |
The date and time the customer created the draft order, for example, You can format dates using the Liquiddate filter. |
tags | Returns an array of all of the order's tags. The tags are returned in alphabetical order. Please see ourLiquid reference documentationfor more details. |
tax_price |
The combined taxes of all the items in the draft order. |
tax_lines |
Taxes broken up by type of tax: {% for tax_line in tax_lines %} {{ tax_line.title }} ({{ tax_line.rate_percentage }}%) : {{ tax_line.price | money_with_currency }} {% endfor %} |
tax_line.title |
The name of the tax. Examples: QST or VAT |
tax_line.price |
The tax amount. |
tax_line.rate |
小数形式的税率。对于example, a tax rate of 17.5% will return0.175 . |
tax_line.rate_percentage |
The tax rate in percentage form. For example, arate of 0.175 will return17.5 . |
customer |
Customer object containing the attributes of thecustomeroutput. |
billing_address |
Thebilling addressfor the draft order. |
billing_address.first_name |
The customer's first name. |
billing_address.last_name |
The customer's last name. |
billing_address.company |
The company name in the billing address. |
billing_address.phone |
The phone number in the billing address. |
shop.name |
The name of your store. |
shop.phone |
Your store's phone number. |
subtotal_price |
Sum of the draft order's line-item prices after any line-item discount or cart discount has been deducted. The subtotal doesn't include taxes (unless taxes are included in the prices) or shipping costs. |
discounts |
A list ofdiscounts. |
discounts_amount |
Amount of the discount applied by all discounts. Example: +$5.00 |
discounts_savings |
Amount of the savings caused by all discounts. Example: -$5.00 |
total_price |
The total price of the order (subtotal + shipping cost - shipping discount + tax). |
requires_shipping |
Returnstrue if there is at least one item in the draft order that requires shipping. Returnsfalse if no items in the draft order require shipping. |
shipping_method.title |
The Shipping rate name. Example: Standard Shipping |
shipping_method.price |
The price of the shipping method. Returns the same information asshipping_price . |
shipping_price |
The shipping price. You can format this amount using Liquidmoney filters. |
shipping_address |
Theshipping address. Note: Unlike in regular orders, a draft order's shipping address may be incomplete. |
shipping_address.first_name |
The first name for the shipping address. |
shipping_address.company |
The company name in the shipping address. |
shipping_address.phone |
The phone number in the shipping address. |
line_items |
A list of allline itemsin the draft order. |
item_count |
A sum of all the item quantities in the draft order. |
note |
The note attached to the draft order. The note can be obtained from the customer and also edited in the draft order detail screen in your Shopify admin. |
location |
The physical location of the order. There are severallocation propertiesavailable. You can configure locations in theLocationspage of your Shopify admin. |
b2b吗? |
Returns true if the order is a B2B order. Use the property with B2B variables to display relevant information, such as the company name, company location, and address in emails. For example, on B2B orders, you might add a header to a template with the following information:
|
company |
Thecompanythat you’re selling to on a B2B order. |
company.name |
The name of the company on a B2B order. |
company.id |
The ID of the company on a B2B order. |
company_location |
Thelocationof the company on a B2B order. A company that buys from you can have more than one location. |
company_location.name |
The name of the company location on a B2B order. |
company_location.id |
The ID number of the company location on a B2B order. |
company_location.shipping_address |
Theshipping addressof the company location on a B2B order. |
company_location.billing_address |
Thebilling addressof the company location on a B2B order. |
Payment schedule properties
Payment schedule properties are available on thePayment Reminderemail template, which reminds your customer about a payment's due date.
Property | Description |
---|---|
payment_schedule.amount_due |
The amount to be paid for a payment schedule. You can format amounts with currencies using the Liquidmoney filter. |
payment_schedule.due_at |
The due date for the payment schedule. You can format dates using the Liquiddate filter. |
payment_schedule.due_in_days |
The number of days until the due date if the payment schedule is still due (unpaid). |
payment_schedule.due_later? |
Returns true if a payment schedule hasn't been paid and its due date is in the future. |
payment_schedule.number_of_days_overdue? |
The number of days since the due date when a payment schedule is overdue. |
payment_schedule.overdue? |
Returns true if a payment schedule has not been paid and it is past its due date. |
Line item properties
Eachline
in the list ofline_items
orsubtotal_line_items
has the following properties.
Property | Description |
---|---|
line.applied_discounts(POS and draft orders only) |
List of discounts applied to this item (each discount has thetitle ,code ,amount ,savings andtype properties). |
line.custom(Draft orders only) |
(boolean) Returns true if the item is a custom line item for a draft order. |
line.grams |
Weight of a single item. |
line.image |
Returns the URL of the image associated with this line item. You can also use theimg_url filterto get specific image sizes, for example{{ line.image | img_url: 'small' }} |
line.line_price |
The price multiplied by the quantity for that item. |
line.original_line_price |
The combined price of the quantity of items included in the line, before discounts were applied. |
line.final_line_price |
The combined price of all the items in the line item, including all line level discount amounts. |
line.price |
The price for a single item. |
line.product.metafields |
The Metafields at the product level. Use the following syntax: line.product.metafields.NAMESPACE.KEY |
line.product.title |
The name of the product. |
line.product.vendor |
The vendor for the item. |
line.properties |
Returns an array of custom information for an item.Line item propertiesare specified by the customer on the product page, before adding a product to the cart. |
line.quantity |
Quantity for that item. |
line.requires_shipping |
(boolean) Returns true if the variant for the item has the checkboxThis is a physical productchecked on the product page. |
line.selling_plan_allocation |
Returns aselling_plan_allocation object, which describes how a selling plan such as asubscriptionimpacts the line item. |
line.taxable |
(boolean) Returns true if the variant for the item has the checkbox 'Charge taxes on this product' checked on the product page. |
line.title |
The name of the product followed by a dash followed by the name of the variant. The variant name isn't included when it is “Default Title”. |
line.url |
The relative URL of the line item's variant. The relative URL doesn't include your store's root URL (mystore.myshopify.com ). |
line.line_item.variant.barcode |
The barcode associated with the product variant. |
line.variant.compare_at_price |
Thecompare at priceassociated with the product variant. |
line.variant.image |
The image for the product variant. Only returns an image if there is a specific image assigned to the variant in the line item. |
line.variant.metafields |
The Metafields at the variant level. Use the following syntax: line.variant.metafields.NAMESPACE.KEY |
line.variant.sku |
The SKU associated with the product variant. |
line.variant.title |
The variant's option values, joined by Example: small / red |
line.refunded.quantity(within refund notifications) |
The quantity of an item to be refunded. You can use this property to add an identifier to refunded items in an order. 对于example: |
Refunds properties
These additional properties are available on theRefundsemail template. This email template is used to notify your customers that a refund (complete or partial) has been applied to their order. You can use any variable available for theOrder emailnotification template, in addition to the following variables:
Property | Description |
---|---|
amount |
The amount of money refunded. |
refund_line_items |
A list ofrefund line itemsto be refunded. |
Refund_line_item properties
Eachrefund_line
in the list ofrefund_line_items
has the following properties:
Property | Description |
---|---|
refund_line.line_item |
The line_item that is being refunded. This has access to all theline_item’s properties. |
refund_line.quantity |
The quantity of the line item to be refunded. |
Fulfillment properties
These additional properties are available on theShipping confirmation,Shipping updateandFulfillment requestemail templates.
TheShipping confirmationandShipping updateare used to notify your customers that some or all items in their order have been successfully fulfilled, or updated with new shipping information.
TheFulfillment requestemail template is used for any custom fulfillment service defined in your shop admin. To add a custom fulfillment service, go toSettings>Shippingand scroll down toFulfillment/Dropshipping.
Property | Description |
---|---|
service_name |
The name of the custom service as defined in theSettings>Shippingpage.(Fulfillment request only) |
fulfillment.estimated_delivery_at |
An estimated delivery date based on the tracking number (if available) provided by one of the following carriers: USPS, FedEx, UPS, Canada Post (Canada only). This property is only available whencarrier-calculated ratesare in use. |
fulfillment.fulfillment_line_items |
A list offulfillment line itemsto be fulfilled. |
fulfillment.item_count |
A sum of all the items' quantities. The total number of items being fulfilled. |
fulfillment.requires_shipping |
(boolean) Returns true if this fulfillment request requires shipping. |
fulfillment.tracking_company |
The company doing the tracking. |
fulfillment.tracking_numbers |
A list of tracking numbers. |
fulfillment.tracking_urls |
A list of tracking URLs. |
items_to_fulfill(deprecated) |
A list ofline itemsthat are to be fulfilled by this particular custom fulfillment service.(Fulfillment request only) |
items_to_fulfill_count(deprecated) |
The total number of items to be fulfilled by this request.(Fulfillment request only) |
Fulfillment_line_item properties
Eachfulfillment_line
in the list offulfillment_line_items
has the following properties.
Property | Description |
---|---|
fulfillment_line.line_item |
The line_item being fulfilled. This has access to all theline_item's properties. |
fulfillment_line.quantity |
The quantity of the line item that is being fulfilled. |
Delivery properties
Property | Description |
---|---|
delivery_instructions |
Local delivery information to share with the customer. This information is controlled by theDelivery informationfield in yourlocal delivery settings. |
consolidated_estimated_delivery_time |
订单交货日期信息分享customer. This information is controlled by theProcessing timesetting that you set up in yourShipping and deliverypage. |
Discount properties
There are two types of discount properties.
discount_applications
describe why and how an item was discounted.
discount_allocations
describe how a particular discount affects a line item and how it reduces the price. You should use this property at the line item level.
You can combine these properties to display discount information at the line item or order level.
Example
This example checks if a discount has been applied to the line item. If the discount wasn't applied at the order level (all
), then the discount name and amount are displayed.
The result might look like this:
Discount_allocation properties
Eachdiscount_allocation
in the list ofdiscount_allocations
has the following properties.
Property | Description |
---|---|
discount_allocation.amount |
The amount of money saved by the customer on a line item. Must be entered in a loop if you want to allow multiple discount codes. |
discount_allocation.discount_application |
Thediscount applicationthat allocates the amount on the line item. |
Discount_application properties
Eachdiscount_application
in the list ofdiscount_applications
has the following properties.
Property | Description |
---|---|
discount_application.target_selection |
Describes how a discount selects line items in the cart to be discounted. One of:
|
discount_application.target_type |
The type of item that a discount applies to (line_item orshipping_line ). |
discount_application.title |
The customer-facing name of the discount. 例子:欢迎10 or CBBWQQAKYBYY |
discount_application.total_allocated_amount |
The total amount that the price of an order is reduced by the discount. |
discount_application.type |
The type of the discount. One of:automatic ,discount_code ,manual , orscript . |
discount_application.value |
The value of the discount. |
discount_application.value_type |
The value type of the discount. One of:fixed_amount orpercentage . |
Email notification properties
Property | Description |
---|---|
shop.email_logo_url |
The url for the logo specified in theCustomize email templatessection of the admin. |
shop.email_logo_width |
The logo width (pixels) specified in theCustomize email templatessection of the admin. |
shop.email_accent_color |
The HEX code for the accent color specified in theCustomize email templatessection of the admin. |