Conversation
supportHow the hell do I get rid of that awful gravatar connection? Everytime someone signs into vanilla with their WP account that ugly gravatar icon shows up. I’m aware that they can easily change the image, but obviously not everyone does and the thing is an eye sore. Please help! http://wordpress.org/extend/plugins/wp-vanilla-connect/
I have tryed everything to make it stop taking gravatar and use the local avatar on my WordPress page with no luck please advise. thanks
I FINALLY FIGURED IT OUT! in wp-vanilla-connect.php change line 105 $user['photourl'] = $gravatar_url; to $avatar = new SimpleXMLElement(get_avatar($current_user->ID)); $user['photourl'] = (string)$avatar['src'];
I have tryed everything to make it stop taking gravatar and use the local avatar on my WordPress page with no luck please advise. thanks
I FINALLY FIGURED IT OUT! in wp-vanilla-connect.php change line 105 $user['photourl'] = $gravatar_url; to $avatar = new SimpleXMLElement(get_avatar($current_user->ID)); $user['photourl'] = (string)$avatar['src'];