Skip to content

Instantly share code, notes, and snippets.

@tjmapes
Created March 1, 2018 03:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tjmapes/e4e01fc837e8797e7af0673c0df7f45f to your computer and use it in GitHub Desktop.
Save tjmapes/e4e01fc837e8797e7af0673c0df7f45f to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment