- Put the file bb-avatar.php into your my-plugins directory (in the bbpress root directory)
- Add "post_avatar();" (between the php tags) in post.php or wherever you want it if using your own template.
NOTE: If using the default template, you MUST change style.css so that avatars can fit in the author info area.
I made these changes in style.css to allow for a 150x150px avatar
.post { min-height: 200px; }
.threadauthor { margin-left: -165px; overflow: hidden; position: absolute; max-height: 215px; width: 150px; }
NOTE: .post did not exist previously, but the div's did exist. .threadauthor did exist, and I made a few changes to it.