Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shopifypartners/3aa0839359c50e89403faadf94ccdb88 to your computer and use it in GitHub Desktop.
Save shopifypartners/3aa0839359c50e89403faadf94ccdb88 to your computer and use it in GitHub Desktop.
Input.cart.line_items.each do |line_item|
product = line_item.variant.product
next if product.gift_card?
next unless product.id == 6323295239
line_item.change_line_price(line_item.line_price * 0.90, message: "My Sale")
end
Output.cart = Input.cart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment