-
Guust replied to the topic [Resolved] Adding Biographical Info to the Buddypress profile page in the forum How-to & Troubleshooting 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 -
Guust replied to the topic [Resolved] Adding Biographical Info to the Buddypress profile page in the forum How-to & Troubleshooting 11 years, 8 months ago
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 );
[…] -
Guust replied to the topic [Resolved] Adding Biographical Info to the Buddypress profile page in the forum How-to & Troubleshooting 11 years, 8 months ago
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 . '';
?> -
Guust started the topic [Resolved] Adding Biographical Info to the Buddypress profile page in the forum How-to & Troubleshooting 11 years, 8 months ago
I would like to add an author’s Biographical Info to the Buddypress profile page.
I would like to add the info to the child-theme/members/single/member-header.php file (at least that is where I think it should […]
@goldroo
Active 7 months ago