Last updated
Was this helpful?
These Shopify REST-backed Liquid objects are legacy. The product and variant Liquid objects no longer work, and Shopify is phasing out the REST Admin API that these objects depend on. Use GraphQL for new work; see the Shopify REST Admin API notice and migration guides.
Look up specific discount codes by price rule ID and discount code ID, using {{ shop.price_rules[12345].discount_codes[67890] }}
Look up a single discount code by its code, using {{ shop.discount_codes["DISCOUNTABC123"] }}
Loop through all discount codes for a single: {% for discount_code in price_rule.discount_codes %}
The related price rule object: {{ price_rule.discount_codes }}
Last updated
Was this helpful?
Was this helpful?