mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://stackoverflow.com/questions/79130797/auto-apply-a-predefined-coupon-code-for-any-imputted-5-character-coupon-code-in
8 lines
315 B
Text
8 lines
315 B
Text
add_action( 'woocommerce_coupon_code', 'replace_5_char_coupon_code' );
|
|
function replace_5_char_coupon_code( $coupon_code ) {
|
|
// If the coupon code has exactly 5 characters
|
|
if ( strlen($coupon_code) === 5 ) {
|
|
$coupon_code = 'PREDEFINED50'; // coupon code replacement
|
|
}
|
|
return $coupon_code;
|
|
}
|