Is there a posibility to integrate gravatar in comments ??? and thank you in advance best script thank you chris
Integrating Gravatar looks fairly straight forward, you can do so by making a small change to your functions.php
file, around line 884~ you'll see this code
$str = str_replace("{email}",$email2,$str);
If you add the following line above it
$str = str_replace("{emailhash}", md5($row['email']), $str);
$str = str_replace("{email}",$email2,$str);
Then edit your Template
and add the following to the Comments
section
<img src="http://www.gravatar.com/avatar/{emailhash}.jpg" />
Now comments should have a Gravatar image.