Preview:
// Elementor Form Telephone Number Validition
//======================================
add_action( 'elementor_pro/forms/validation/tel', function( $field, $record, $ajax_handler ) { 	
	// Match this format XXXXXXXXXX, 1234567890 	
	if ( preg_match( '/[0-9]{10}/', $field['value'] ) !== 1 ) { 		
	$ajax_handler->add_error( $field['id'], 'הזן טלפון חוקי ללא מקף או רווח' ); 	
	}
 	}, 10, 3 );
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter