Fatal error: Call to undefined function get_user_id_from_string() in /data/filer-6/web/web1496/htdocs/wp-content/plugins/minotar-minecraft-avatars/minotar.php on line 125
Please update :'(
I’m also having the same issues.
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 😉
Thread Starter
mll
(@mll)
fix works for me. thanks a lot, thorstenschmitz 🙂
This has been fixed with 1.6, side note does anyone know how to get email alerts of new issues?
On the Support page (http://ww.wp.xz.cn/support/plugin/minotar-minecraft-avatars) there should be a small link towards the bottom: “Subscribe to Emails for this Plugin”
There is also a link to the RSS feed for the plugin’s support threads. I add the feeds for my plugins to my RSS reader so I can see all new posts on any of them.