I tried putting this snippet in my functions.php add_filter( 'avatar_defaults', 'newgravatar' ); function newgravatar ($avatar_defaults) { $myavatar = get_bloginfo('template_directory') . '/images/default_avatar.png'; $avatar_defaults[$myavatar] = "Locale"; return $avatar_defaults; } A new...
  • May 17, 2022
  • 0 Comments
I’m interested in the theory of a user being able to register/upload a gravatar directly in their user account within a hosted WP system. Is this feasible? 4 Answers...
  • May 15, 2022
  • 0 Comments
I’m using Simple Local Avatars for uploading custom user avatars. How can I create a frontend page with the avatar upload function? Below please find the code from Simple...
  • May 15, 2022
  • 0 Comments
I want to use local avatar system for my wp website , I want to filter the get_avatar() function so it will return the avatar from my server instead...
  • May 14, 2022
  • 0 Comments