• I would like to add an author’s Biographical Info to the Buddypress profile page.
    I did add [suffusion-the-author display=’description’] below the posts, so that works fine on the post pages.
    I would like to add the same info to the child-theme/members/single/member-header.php file (at least that is where I think it should be).
    So far all I tried did not work …

    I also would like to add click-able fields to the same page for the author’s twitter and facebook pages (as enabled at Suffusion Options > Back End > User Profiles).

    Another Suffusion lover

    [also posted at Suffusion Support Forum]

Viewing 1 replies (of 1 total)
  • Thread Starter Guust

    (@goldroo)

    Solved how to add the biography:

    <?php
      $key = 'description';
      $single = true;
      $user_last = get_user_meta( (bp_displayed_user_id()), $key, $single );
      echo '<p>' . $user_last . '</p>';
    ?>

Viewing 1 replies (of 1 total)
  • The topic ‘Adding Biographical Info and other info to the Buddypress profile page’ is closed to new replies.