• Hi I installed your plugin a year ago and was working fine.
    Now when users register to my page is giving them a user ID with a number really long. like x.xxxxxxxxxxxxxE+15 and is giving me problems as I have some filter that use user ID as a filter.
    the problem is that all 14 first digits are the same!
    how can I change those ID or how can I undo this plugin?

    Depronto me explico mejor en espa?ol.

    Cuando un nuevo usuario se registra en mi pagina wordpress le asigna un numero exponensial. El problema es que donde como filtro el ID del usuario wordpress los lee todo igual y el filtro no me funciona.

    como puedo deshacer los cambio que el plugion realizo en mi codigo y no generar mas random users ID?. o hay otra solucion?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • I’m a bit concerned about the problem you’ve found.
    Have you changed anything else in the last months? (database engine, PHP version…)

    You can always limit the max user number ID generated by the plugin by using the filter dfx_random_user_id_max_id as noted in the documentation:

    
    function set_dfx_max_user_id( $default_max_id ) {
        return 999999;
    }
    add_filter( 'dfx_random_user_id_max_id', 'set_dfx_max_user_id' );
    
Viewing 1 replies (of 1 total)
  • The topic ‘exponential User ID number’ is closed to new replies.