@goldroo
11 years, 8 months ago
Still not right, although I format the code as code, it does not quite post correctly. See here for the correct code: https://wordpress.org/support/topic/adding-biographical-info-and-other-info-to-the-buddypress-profile-page
The code above is not quite correct, I’ll try to add it again without the php statement: `$key = ‘description’; $single = true; $user_last = get_user_meta( (bp_displayed_user_id()), $key, $single ); echo ” . $user_last . ”; `
Figured out how to add the description: `<?php $key = 'description'; $single = true; $user_last = get_user_meta( (bp_displayed_user_id()), $key, $single ); echo '’ . $user_last . ”; ?>`