Try this for your avatar display.
Your shortcode syntax would look like …
[showavatar username=”johnsmith”]
You can change width & height to your preference.
function show_avatar ($atts) {
$user = get_user_by( 'login' , $atts['username'] );
return bp_core_fetch_avatar( array(
'item_id' => $user->ID,
'width' => 50,
'height' => 50,
) );
}
add_shortcode( 'showavatar' , 'show_avatar' );