Forked from dylanjhunt/Shopify Javascript - Add item to cart for free -Shopify Script
Created
January 18, 2018 18:01
-
-
Save dturton/378bd07b848fdb38af0e0a5767755e64 to your computer and use it in GitHub Desktop.
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
discounted_product = 12275195905 | |
products_needed = [592406273] | |
products_seen = [] | |
Input.cart.line_items.each do |line_item| | |
product = line_item.variant.product | |
products_seen << product.id if products_needed.include?(product.id) | |
end | |
Input.cart.line_items.each do |line_item| | |
product = line_item.variant.product | |
next unless product.id == discounted_product | |
line_item.change_line_price(line_item.line_price * 0.0, message: "Free Product with Purchase") if products_seen.uniq.sort == products_needed.uniq.sort | |
end | |
Output.cart = Input.cart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment