You should at least see yourself.
A member will not appear on the members page until they have logged in at least once.
If one or more of your members have logged in and still do not appear on the members page, then there may be an issue with your theme.
To find out, try switching momentarily to a WP theme like 2015.
I don’t see myself either. I tried different themes and it didn’t work. Two other members (created by me) logged in. I assigned the members directory in Buddypress settings to the Members page.
i am having a similar issue have you found a solution or problem
It does work, so there has to be another factor that is causing the members list to fail, are you sure you have tried it with no other plugins running and with a theme such as 2017 enabled?
I am having the same issue. Have you found a solution. Members are visible to admins or editor roles but not to subscribers.
In the members page I am getting this console error
Uncaught TypeError: Cannot read property 'contents' of undefined
at HTMLDivElement.<anonymous> (buddypress-nouveau.min.js?ver=4.3.0:1)
at HTMLDivElement.d.complete (jquery.js?ver=1.12.4-wp:4)
at i (jquery.js?ver=1.12.4-wp:2)
at Object.fireWith [as resolveWith] (jquery.js?ver=1.12.4-wp:2)
at i (jquery.js?ver=1.12.4-wp:4)
at n.fx.tick (jquery.js?ver=1.12.4-wp:4)
I think this might be it, but not sure how to solve it. Can it be the jquery version of my theme?
It may be a caching issue.
Try deactivating any caching plugins you are using.
Or it may be a javascript minification issue.
Try turning off any settings that minify javascript.
I found the problem… I was disabling access to the dashboard to users
function disable_dashboard() {
if (current_user_can('subscriber') && is_admin()) {
wp_redirect(home_url());
exit;
}
}
add_action('admin_init', 'disable_dashboard');
I removed that and it is working now. Not sure about the reason but I was debugging commenting stuff and that did the trick.