githubEdit

🚫Line item object

triangle-exclamation

How to access it

  • Access an array of line items using {{ order.line_items }} whenever an order object is available

What it contains

  • Every property from Orders.line_items in the Shopify REST Admin API

  • The related product object: {{ line_item.product }}

  • The related variant object: {{ line_item.variant }}

  • An array of properties, that also supports lookups by attribute name: {% for prop in line_item.properties %}{% if prop.name == "Delivery window" %}{{ prop.value }}{% endif %}{% endfor %}, or {{ line_item.properties["Delivery window"] }}

Last updated

Was this helpful?