Ravatars

Ravatars will generate and assign random icons to the visitors leaving comments at your site. It can optionally show Gravatars as well.

Author:grokcode (profile at wordpress.org)
WordPress version required:2.0.2
WordPress version tested:2.7
Plugin version:2.0.4
Added to WordPress repository:05-03-2008
Last updated:27-10-2014
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:0
Rated by:0
Plugin URI:http://grok-code.com/7/ravatar-wordpress-plug...
Total downloads:6 663
Active installs:10+
plugin download
Click to start download

Ravatars is a plugin that will generate and assign icons to the visitors leaving comments at your site. The icons are based on email,
so a given visitor will get the same icon each time they comment. It is easy to customize the avatars so that they match your site’s topic or theme. It also makes comment threads easier to follow when people have memorable “faces.”

This plugin is based on Shamus Young’s Wavatars plugin.

And a shout out to Gregory Weir for bugfixes. Thanks!

Features:

  1. You can customize the avatars your site will display to match your theme. Just upload source images to the
    wp-content/plugins/ravatars/parts directory. Ravatars will create your custom avatars by choosing a random image and then cropping a random
    part of the image
  2. The icons are generated on-the-fly. You can adjust the desired size of the icons.
  3. Easily integrates with avatar enabled themes
  4. For easy deployment in WordPress pre 2.5, icons will automatically precede the commenter’s name. You can set HTML to come directly before and after the
    icon (to put it inside of a <DIV> tag, for example) or you can control the placement of the icons manually if you don’t mind adding
    a single line of PHP to your theme.
  5. The same email will result in the same Ravatar every time, assuming that the source images don’t change the same. If you want avatars that are unique to your site, all you need to do is change the source images.
  6. This plugin also supports Gravatars. If you like, it can show the Gravatar for a given user
    (if available) and fall back on their Ravatar only if they don’t have a Gravatar set up. This means users can choose to set up a unique
    icon for themselves, and if they don’t, they will be assigned a unique Ravatar. It’s a system that lets people personalize if
    they want, yet still provide a decent icon for the lazy or apathetic.

Revision History

Version 1.0.1

  • Initial release.

Advanced Tricks

If you get a memory error

Image manipulation functions are very memory intensive. If you get a memory error, try reducing the size of your source images by lowering the resolution or cropping them into smaller parts. You can also increase PHP’s memory_limit.

Using ravatar_show ()

If you place Ravatars by calling ravatar_show () manually, note that you can also specify an optional “size” argument to override the
default. For example:

ravatar_show($comment->comment_author_email, '160');

This would cause the Ravatar to be 160×160 pixels, even if the default was set to some other value. You could do this to make admin icons
larger, for example.

Using ravatar_get ()

If ravatar_show () STILL doesn’t give you enough control, you can call:

ravatar_get(email, size);

And it will return the URL to the created image without writing anything to the page.

Random Ravatar Field

Put this code in your theme:

for ($i = 0; $i < 100; $i++)
    ravatar_show ($i);

It will generate a field of 100 random ravatars, which is cool. This is how I generated the ravatar screenshot. It’s also a great way to quickly
test your source images.


Screenshots