Autologin does not work on multisite instance
-
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"; }
- The topic ‘Autologin does not work on multisite instance’ is closed to new replies.