Last active
December 19, 2024 15:34
-
-
Save pramodjodhani/09032e43a11d7edf719289d00f6f5c6d to your computer and use it in GitHub Desktop.
Iconic Flux checkout - validate phone number on step change.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Iconic Flux checkout - validate phone number on step change. | |
* | |
* @param array $messages The inline errors. | |
* | |
* @return array | |
*/ | |
function flux_checkout_custom_inline_error_message( $messages ) { | |
$value = $_POST['fields']['billing_phone']['value'] ?? false; | |
if ( ! $value ) { | |
return $messages; | |
} | |
if ( preg_match( '/^07/', $value ) ) { | |
return $messages; | |
} | |
$messages['billing_phone']['message'] = 'Please enter a valid phone number that starts with 07'; | |
$messages['billing_phone']['isCustom'] = true; | |
return $messages; | |
} | |
add_filter( 'flux_checkout_check_for_inline_errors', 'flux_checkout_custom_inline_error_message' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment