- 
	
	Philippe Roussel replied to the topic Saved bio not appearing in the forum How-to & Troubleshooting 11 months, 1 week 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 1 year, 4 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 10 months, 2 weeks ago