@stephunique
Active 1 month, 1 week ago
-
Mohammad Imran replied to the topic Display portion of user bio in membership directory in the forum How-to & Troubleshooting 4 months, 4 weeks ago
@stephunique with the help of this code snippet, you can display the user bio on member directory.
/**
* User Bio on member directory.
*
* @return void
*/
function display_user_bio_on_member_directory() {
if ( ! bp_is_members_directory() ) {
return;
}
global $members_template;
$member_id = $members_template->member->id;
$bio =…[Read more]