Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

I am trying to figure out how to have a user bio in the user profile using BuddyPress.

For example, on this page http://buddypress.org/community/members/johnjamesjacoby/activity/just-me/ where it says "I help lead the BuddyPress and bbPress projects. I also like puppies, potato chips, and a good nap."

I'm assuming it's default behavior since it's on the BuddyPress site, but if it's not, that might be why I'm having issues. Is that a BuddyPress plugin? How can I get that implemented?

share|improve this question

2 Answers

If you enable Extended Profiles on the Buddypress > Components page, you can add new questions to the profile form on the Buddypress > Profile Fields page...

See: http://codex.buddypress.org/getting-started/configure-buddypress-components/

share|improve this answer
up vote 0 down vote accepted

I ended up adding a User Bio Profile Field and then displayed it by inserting the following into member-header.php in the BuddyPress theme files:

<?php if ( bp_get_profile_field_data( 'field=User Bio' ) ) : ?>
    <div class="user-bio"><?php bp_profile_field_data( 'field=User Bio' );?></div>
<?php endif ?>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.