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
# See https://onlygrowth.com/blogs/posts/17-shopify-scripts-to-maximize-conversions for some helpful snippets | |
class FreeGift | |
def initialize(variant_id, minTotal, message, quantity = 1) | |
@variant_id = variant_id | |
@minTotal = minTotal | |
@message = message | |
@giftQuantity = quantity | |
end | |
# Get the total of the cart without the variant price being included |