Forums

Join
bbPress Support ForumsTroubleshootingshow user avatar

Info

Tags

show user avatar

  1. hi, i need the function to show the user's avatar on the forum sidebar, anyone can help me?

    thanks

    edit: i've tested this

    <?php echo bb_get_avatar($user->ID, 40, $default); ?>

    but i see a generic avatar and not my gravatar... help me!

  2. what value are you using for $default? have you tried just using:
    <?php echo bb_get_avatar($user->ID, 40); ?>

  3. yes but i see my avatar only on my profile page, in home, topic, etc i see a generic avatar...

  4. I'm coming to grips with bbPress.. slowly.

    Is the $user->ID actually availabel for use at that point or do you need to do a
    bb_get_current_user_info('ID'); ?

  5. you rocks Rick :)

    this is the solution:

    <?php echo bb_get_avatar(bb_get_current_user_info('ID'), 40); ?>

  6. glad it worked.

  7. You must log in to post.