• Hi, the pluging works great, but autologin functionality does not work on mulisite instance. The solution would be to change in file \user-verification\includes\functions.php line 988

    
    $table = $wpdb->prefix . "usermeta";
    

    to

    
    if(is_multisite()){
        $table = $wpdb->base_prefix . "usermeta";
    }else{
        $table = $wpdb->prefix . "usermeta";
    }
    
    • This topic was modified 2 years, 9 months ago by b_rtek.
  • The topic ‘Autologin does not work on multisite instance’ is closed to new replies.