Description
Modify the minimum length that a numeric unique ID can be.
Note, this will also set the default for any Unique ID fields that do not have their length setting filled in.
Usage
add_filter( 'gpui_numeric_minimum_length', 'my_custom_function' );
Parameters
min_length int
The minimum length that a Unique ID field’s length can be set to.
Examples
Set minimum numeric unique ID length to 3.
add_filter( 'gpui_numeric_minimum_length', function() {
return 3;
} );
Since
This filter is available since Gravity Forms Unique ID 1.3.10.