Hi!
I fixed the problem by editing minotar.php:
Line 125 ff
} else {
require_once(ABSPATH . WPINC . '/ms-functions.php');
$id = get_user_id_from_string($id_or_email);
$user = get_userdata($id);
$username = $user->user_login;
}
change it to
} else {
require_once(ABSPATH . WPINC . '/ms-functions.php');
$user = get_user_by('email', $id_or_email);
$username = $user->user_login;
}
You’re welcome 😉
I ran into the same issue. The result is always 0%.
Sadly, this only happens to Firefox-Users (any OS). Safari, Chrome, IE,… seems fine. I tried to check the POST-Values but nothing seems different between browsers…
Did you got any follow up on this?