• Resolved manishb510

    (@manishb510)


    Hi Plugin Author,
    I am wondering if there is any way to restrict the length of the ID from 16 Digits to 8 or Max 10 Digits? And I also wanna know, Will there be unique IDs for each user even if the site will have 10000s of users registered?

    Waiting for a function to shorten the ID Length.

Viewing 1 replies (of 1 total)
  • Hi!

    Yes, you can do it by using the dfx_random_user_id_max_id filter.

    For example, you can add the following code to your functions.php file:

    
    add_filter( 'dfx_random_user_id_max_id', 'custom_max_user_id', 10, 0 );
    function custom_max_user_id() {
        return 99999999;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘How to Sorten ID Length from 16 to 8 or 10 Digits only’ is closed to new replies.