Zine (formerly Magzine)

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;
});