Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How to display specific user\\\'s avatar?


Lisa Sabin-Wilson
Participant

@lisasabinwilson

Give this a shot – it links the user avatar (by user ID) to that member’s profile page (this example pulls from the user with the ID of 3) –

<?php global $bp; ?>
<a href="<?php echo bp_core_get_userurl($userid=3) ?>"
title="<?php bp_core_get_user_displayname( $userid=3, true ) ?>">
<?php echo bp_core_get_avatar( $userid=3, 1 ) ?></a>

I bet there’s a cleaner way to go about it – but it should get ya started :)

Skip to toolbar