• Resolved ta3ho

    (@ta3ho)


    I added the following to my function.php file to allow the maximum user ID to be 999999

    add_filter( ‘dfx_random_user_id_max_id’, ‘custom_max_user_id’, 10, 0 );
    function custom_max_user_id() {
    return 99999;
    }

    How can I also make the minimum user ID be 10000?
    This way, all user IDs can be 5 digits.
    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Minimum User ID’ is closed to new replies.