Ug. How did I do this.
Well, what I did for my forum was break it down on the number of posts required to receive an avatar. This crossed the entire forum and I kept it simple and did not have different avatars available based on different post count totals. Anyone on my forum can receive an avatar once they've reached 201 posts.
With that said, I simply force it in functions.php to display the guestavatar.gif image (or you can call it whatever you want if you use a different filename).
The code below does the following.
If a poster has less than 200 posts, default to the guestavatar.gif image.
If a poster has no avatar selected, even if they have over 200+ posts, default to the guestavatar.gif image.
This modification is based on VB v2.3.0.
Open up functions.php
### FIND:
Code:
$post[message]=bbcodeparse($post[pagetext],$forum[forumid],$post[allowsmilie]);
### BENEATH IT, ADD:
Code:
if($post[posts] <= 200) { $post[avatar] = "<img src={imagesfolder}/guestavatar.gif"; }
if($post[avatar] == "") { $post[avatar] = "<img src={imagesfolder}/guestavatar.gif"; }
That should do it. $post[avatar] is a variable used by VB to display a users avatar in the postbit.
guestavatar.gif is the filename of the avatar you want to display if someone has less than 200 posts OR has not selected an avatar.
If your own forum allows avatars at 50 posts or 100 posts, simply change the <=200 to the number of required posts needed on your own forum.
Rename guestavatar.gif to your own image.gif file if you are using a different filename.
This modification will only change the Postbit and not the Control Panel.
When a member is able to choose their own avatar, the above code will not stop it from being displayed.
Hope that's what you're looking for.
Syl...