I want to add a message on the checkout page either after (or if) a coupon is applied. The idea is to have a description of the promo and the bonus they get with the coupon.
add_action('woocommerce_applied_coupon', 'woocommerce_applied_coupon_action');
function woocommerce_applied_coupon_action($coupon_code)
{
echo 'My Message';
}