Adding Custom Message When Coupon Code is Applied - Shopify Plus

I am trying to make a message appear when a coupon code is applied at checkout in the spot indicated below.

Support advised me that I need to add Javascript to the checkout.liquid layout file and that the javascript should watch the discount code element on the front end for changes and append the message when needed.

Does anyone have experience with this or any ideas on how to get started with the javascript?

Yes, You can add following JS in checkout page

(function($) {
$(document).on("page:load page:change", function() {
// Add your custom code for discount here
});
})(Checkout.$);

That seems to just show the message on checkout page load instead of when the coupon code is applied.

1 Like