Skip to content

Instantly share code, notes, and snippets.

@pramodjodhani
Last active December 19, 2024 15:34
Show Gist options
  • Save pramodjodhani/09032e43a11d7edf719289d00f6f5c6d to your computer and use it in GitHub Desktop.
Save pramodjodhani/09032e43a11d7edf719289d00f6f5c6d to your computer and use it in GitHub Desktop.
Iconic Flux checkout - validate phone number on step change.
<?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