I have already managed to see avatars in dashboard -> users.
Did that by changing user-photo.php line 79 to this
change user-photo.php(line 79):
if(get_option("userphoto_override_avatar") && !is_admin())
to
if(get_option("userphoto_override_avatar"))
and then add a line for adding an action on admin_head(line 85):
add_action("init", "userphoto__init");
add_action("admin_head", "userphoto__init", 1);
// add this lineI found this posted here by "9steps"
now all i miss is to manage to see users photos in dashboard recent comments.
Anyone knows what to change? I have searched but found no good results on that
Thanks in advance