Advertisement
salonbookingsystem

field validation

Mar 16th, 2022
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. add_filter('sln.shortcode.details.dispatchForm.validate_bind_values', function ($isValid, $values, $step) {
  2.         $vat = $values['partita_iva'];
  3.         if (strlen($vat) !== 11) {
  4.             $step->addError(__('Valore errato, controlla il numero inserito.', 'salon-booking-system'));
  5.             $isValid = false;
  6.         }
  7.  
  8.         return $isValid;
  9.     }, 10, 3);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement