• I’m having trouble getting a gravatar to update. I worked on the site for a client and at one point had it connected to my Facebook through a theme functionality. So it is pulling in my Facebook photo even though I have unlinked the connection to Facebook. My client has updated her gravatar photo on gravatar.com. I see the correct photo in some browsers, which makes me think it’s a cache problem. But I clear the cache and I just cannot get it to update in all instances. Any ideas?

    Amanda

Viewing 1 replies (of 1 total)
  • To get rid of the social network avatar you can execute this query in your database:

    DELETE FROM wp_usermeta
    	WHERE meta_key IN ('oa_social_login_user_thumbnail', 'oa_social_login_user_picture')
    	AND user_id = (SELECT ID from wp_users WHERE user_login = 'admin' LIMIT 1)
    LIMIT 2;

Viewing 1 replies (of 1 total)

The topic ‘Gravatar Not Updating’ is closed to new replies.