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 Length for Numeric Unique ID
<?php
/**
* Gravity Perks // Unique ID // Set Minimum Length for Numeric Unique ID
* https://gravitywiz.com/documentation/gravity-forms-unique-id/
*/
add_filter( 'gpui_numeric_minimum_length', function() {
// Update "3" to your desired minimum length.
return 3;
} );
Since
This filter is available since Gravity Forms Unique ID 1.3.10.