mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-28 11:22:21 +08:00
8 lines
348 B
Text
8 lines
348 B
Text
add_filter( 'gform_field_validation', function ( $result, $value, $form, $field ) {
|
|
if ( $field->type == 'creditcard' && $result['is_valid'] && rgempty( $field->id . '.5', $value ) ) {
|
|
$result['is_valid'] = false;
|
|
$result['message'] = 'Please enter the cardholder first and last name.';
|
|
}
|
|
|
|
return $result;
|
|
}, 10, 4 );
|