Info
- 6 posts
- 2 voices
- Started 2 years ago by Arturo
- Latest reply from Rich Pedley
- This topic is resolved
show user avatar
-
- Posted 2 years ago #
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!
-
- Posted 2 years ago #
what value are you using for $default? have you tried just using:
<?php echo bb_get_avatar($user->ID, 40); ?> -
- Posted 2 years ago #
yes but i see my avatar only on my profile page, in home, topic, etc i see a generic avatar...
-
- Posted 2 years ago #
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');? -
- Posted 2 years ago #
you rocks Rick :)
this is the solution:
<?php echo bb_get_avatar(bb_get_current_user_info('ID'), 40); ?>
-
- Posted 2 years ago #
glad it worked.
-
You must log in to post.