Personalized checkout and custom promotions with Shopify Scripts
Hello, I plan to use Shopify Script Editor for a bundle promo. Currently it's customized so that customers can purchase 4 items for $120, but all discount codes are ineligible. How do I change the setting so only 1 existing code is eligible for this promo?
This code is included to exclude ALL discount codes. Is there a way to edit it?
# DisableDiscountCodesCampaign
#
# Any discount codes will be rejected with the entered message.
# ================================================================
class DisableDiscountCodesCampaign
def initialize(rejection_message)
@rejection_message = rejection_message
end
def run(cart)
return if cart.discount_code.nil?
cart.discount_code.reject(message: @rejection_message)
end
end
User | RANK |
---|---|
4 | |
2 | |
2 | |
2 | |
2 |
Make the shift from discounts to donations, and witness your business not only thrive fina...
By Holly Dec 4, 2023On our Shopify Expert Marketplace, you can find many trusted third party developers and fr...
By Arno Nov 27, 2023You've downloaded the Search & Discovery app from the Shopify App store, and as you're ...
By Skye Nov 8, 2023