Home / Widgets / Modify WooCommerce Coupon Message
Duplicate Snippet

Embed Snippet on Your Site

Modify WooCommerce Coupon Message

Want to change the default WooCommerce Coupon Message? Want to show the discounts they are getting?

Code Preview
php
<?php
add_filter( 'woocommerce_coupon_message', 'modify_woocommerce_coupon_message', 10, 3 );
function modify_woocommerce_coupon_message( $msg, $msg_code, $coupon ) {
    if( $msg === __( 'Coupon code applied successfully.', 'woocommerce' ) ) {
        $msg = sprintf( 
            __( "You are getting $%s discounts.", "woocommerce" ), 
            '<strong>' . $coupon->get_amount() . '</strong>' 
        );
    }
    return $msg;
}

Comments

Add a Comment