I just upgraded to Wordpress 2.5 and would like to use the Gravatars that is built-in.
I am using Brian's Threaded Comments and I placed this line of code
<div style="float: right; margin: 3px;"><?php echo get_avatar( $comment, $size = '32' ); ?></div>
after
<div id="div-comment-<?php echo $c->comment_ID ?>" class='comment<?php echo $odd?>'>
and before
<a name='comment-<?php echo $c->comment_ID ?>' id='comment-<?php echo $c->comment_ID ?>'></a>
The thing is, I get the default image (the one with the gray icon and an outline) in all the comments including mine. I am sure my gravatar is working because when I go into the administration panel to view comments, I do see my gravatar.
I have tried these solutions:
http://wordpress.org/support/topic/164383?replies=4
but they do not work for me. What am I doing wrong? Can anyone help me out?