Re: BP Avatars (and nothing else!) in bbpress… possible?
Thanks for the answer, Burt. Sounds like it wouldn’t be too difficult for someone that knew what they were doing… but lost on a non-coder like me.
In the default bbpress theme (kakumei), I found post.php which has:
<div id="position-<?php post_position(); ?>">
<div class="threadauthor">
<?php post_author_avatar_link(); ?>
<p>
<?php post_author_link(); ?><br />
<small><?php post_author_title_link(); ?></small>
</p>
</div>
Would it be something like replacing “post_author_avatar_link();” with “function bp_core_get_avatar( $user, $version = 1, $width = null, $height = null, $no_tag = false ) ” from bp-core-avatars.php?
That seems too easy, so I doubt that’s it. Does anybody have a few minutes to type out a quick how-to?