Skip to content

Instantly share code, notes, and snippets.

@tjmapes
tjmapes / gist:e4e01fc837e8797e7af0673c0df7f45f
Created March 1, 2018 03:38
Shopify Script Reject All Discount Codes
# Reject all discount codes
Output.cart = Input.cart
exit unless Input.cart.discount_code
Input.cart.discount_code.reject({ message: 'No discount codes allowed until promotion is over' })
Output.cart = Input.cart