Created
January 10, 2018 17:22
-
-
Save derekmorash/7ddf80d2eb3d60dec60e9686f6a82a93 to your computer and use it in GitHub Desktop.
A shopify script to give porducts with a quantity of 2 or more 10% off
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Input.cart.line_items.each do |line_item| | |
next if line_item.variant.product.gift_card? || line_item.quantity <= 1 | |
line_item.change_line_price(line_item.line_price * 0.90, message: "10% 2 or more") | |
end | |
Output.cart = Input.cart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment