-
Philippe Roussel replied to the topic Saved bio not appearing in the forum How-to & Troubleshooting 3 weeks, 6 days ago
Hi @stephunique,
In my case, the issue was due to a conflict with Redis object cache. I had to deactivate the plugin and now BP is working fine.
-
Mohammad Imran replied to the topic Display portion of user bio in membership directory in the forum How-to & Troubleshooting 6 months 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]
@stephunique
Active 6 days, 22 hours ago