If your website won't load after updating to BuddyPress 12.1.1 it is likely a conflict with bbPress or another BuddyPress compatible plugin. Install the BP Classic plugin to fix this issue.

Okay
  Print

How do I show all members in Members Directory as the admin?

If you're using profile filters to filter which members are shown in your Members Directory you may still want to see all members from the admin account. 

To do this make sure you're using version 2.14 of the theme and GhostPool Core plugin, and then add the following to your child theme's functions.php file:

add_filter( 'ghostpool_show_all_members_if_admin', function() {
    return true;
});