Your wordpress plugin replaces the default avatars used in the system with social network avatars. (which is totally okay for me) 
I need to use the social network avatar of current user in my wordpress theme, as they login.
If i use the function:
get_avatar( $current_user->ID);     
Everything is okay – i get the avatar from social network inside the 

 tag.
But if use the function:
get_avatar_url( $current_user->ID); 
In return i receive the URL of the default Gravatar and not the Social network avatar URL.
How do i get the URL of the social network via your plugin?
I haven't found anything like it in the documentation                
 
        
Answers