The gravatar tag has no wiki summary.
0
votes
1answer
35 views
get_avatar won't show uploaded avatar, only default gravatar
I'm using the Simple Local Avatars plugin so my bbPress forumgoers can upload their own avatars. Now, when a user logs in, I want his/her avatar to display next to the relevant links (i.e. logout, ...
0
votes
1answer
30 views
Fetching Gravatar
How can I fetch anyone’s gravatar image?
I need to show users gravatar image on a custom profile page that am making.
I have so far integrated the option of Facebook Profile Pic (which automatically ...
0
votes
3answers
93 views
Gravatar - Default IMG
Gravatar is slowing my website and I want to host mystery man on my main server.
So this is my normal gravatar mystery man
<img class="avatar avatar-68 avatar-default" width="68" height="68" ...
0
votes
1answer
36 views
Adding Gravatar to rss feed
So I have a mailchimp email that goes out and shows the latest posts that have been made on the site. The users on the site all have gravatars and I want to include that in the rss feed so that I can ...
0
votes
1answer
293 views
get_avatar() default image not working as of wp 3.5 [closed]
As of upgrading to wp 3.5 the get_avatar function started not pulling in my default backup image. This has worked for many years this way and curious to why it would stop. I am using the normal use of ...
0
votes
2answers
52 views
Force users to display default Gravatars
Is it possible for a WordPress site to display the users default Gravatar image (of chosen set, eg Retro, Identicon, etc), rather than the users uploaded avatar? As in, all user avatars next to ...
1
vote
1answer
61 views
Can I hook into get_avatar to supply a hash instead of an email?
I'm writing a plugin to PPK encrypt non-public comment data as a second line of defence against crackers (one of my sites was recently compromised, so I have been rather spurred into action!). To ...
1
vote
3answers
75 views
Add gravatar to author list
I am using this code for listing out all authors on the site in my sidebar. It works, except I also need to pull in their Gravatar image. It's working in a loop on the homepage with this
<?php ...
0
votes
2answers
325 views
Broken Gravatar images in comments
I have no idea why, but recently, all new comments on my WordPress site have broken avatar image links. Here is a page that shows the issue: ...
2
votes
3answers
395 views
Setting different width and height for gravatar
I've been trying to set a different width and height using the get_avatar function. I need to set the author's avatar in single.php to 60x40 size.
So let's say the gravatar looks like this:
when ...
0
votes
2answers
179 views
Replace default avatar
I've searched google quite a bit and every site has the same filter but it doesn't seem to be working for me. Not sure if it's my setup or just old code.
I'm trying this:
add_filter( ...
1
vote
0answers
439 views
Why are BuddyPress user avatars not displaying properly?
I have a BuddyPress 1.6.x installation on WordPress 3.4.2.
User avatars are not displaying in the following situations.
On pages like:
www.domain.com/members/USERNAME/profile/edit/group/1/
Here is ...
1
vote
2answers
320 views
get the avatar url instead of an html img tag when using get_avatar?
i want to get the user avatar URL to use it as background URL style for a div. i tried to use the following but it does not return anything when i view the code it appears like that.
background: ...
0
votes
1answer
105 views
Gravatar always shows default image
When I call the following code:
echo get_avatar(
get_the_author_meta('user_email'),
'70',
get_bloginfo('template_directory')."/images/default.png"
);
It generates the following:
...
0
votes
1answer
172 views
Snippet for own (gr)avatars
Following snippet used(and works great) but generates a redirect chain :(.
If (function_excists('basicgravatar')
function basicgravatar ($avatar_defaults) {
$myavatar = ...
0
votes
2answers
838 views
How to get gravatar url alone
I would like to use gravatar image as background image for a button. When i use get_avatar function it returns with height width src parameters.
But i need only gravatar url.
I mean like ...
1
vote
1answer
66 views
Remove hovercard for only certian gravatars
I am using the Extended Gravatar plugin by Reza Moallemi and it works great. However, on my about page I have a large gravatar to show the author. I would like to know if there is a class I can add to ...
3
votes
2answers
134 views
I want to display author gravatar on posts. How to do this?
I just want to add author gravatar near the name of the author. I know that I have to add something in the single.php file, but what to add? Thanks!
-1
votes
1answer
402 views
Building Gravatar Code
I'm building Gravatar code for a theme for SEO reasons, basically don't like the default WordPress Gravatar code because for each avatar it adds an image to the page with no alt text which could have ...
0
votes
1answer
42 views
Gravatar Size Via Theme Functions?
Currently, to call comments I am simply using:
<?php wp_list_comments(); ?>
in comments.php. This is calling up gravatars, which I would like to be able to set the size of. How can I set ...
1
vote
3answers
564 views
get_user_meta Short Profile Section
Ok so i have added a custom field into the users edit profile page where they can add a link to a url of an image they want. I am currently using this for contribitors and above but i also have a ...
3
votes
4answers
515 views
If Else Gravatar Author Picture
Ok so i have added a custom field inside of the WordPress edit profile field where a contributor and above can add a custom image if they do not use gravatar. Now i am trying to write a if else ...
3
votes
1answer
2k views
Removing Gravatar.com support for WordPress and Simple Local Avatars
Currently I'm using Simple Local Avatars on several of my blogs allowing people to upload their own custom avatar.
As far as I know Simple Local Avatars uses get_avatar to check whether a custom ...
0
votes
1answer
195 views
Default Gravatar not showing for pings
Here is my comments block:
<div id="comments">
<?php if (have_comments()) : ?>
<h3><?php printf(_n('1 comment', '%1$s comments', get_comments_number()), ...
1
vote
2answers
474 views
Alternative default avatar generator?
Most of the commenters at my WordPress blog do not have a Gravatar account. Hence the comment section is almost always filled with the same old mystery man avatars.
I am looking for custom gravatar ...
3
votes
4answers
1k views
Upload gravatar in WP profile?
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?