Member sign up creates wordpress.org user
When I log onto my fluent community through my test account and go back to my website while logged into the community it displays a admin dashboard for my website as though the community member can edit my website.
I hope that made sense. Has anyone else experienced this, is there a way to turn this off?
I use this code snippet to disable the admin bar for non-admins.
add_action('after_setup_theme', 'disable_admin_bar');
function disable_admin_bar() {
if (current_user_can('administrator') ) {
show_admin_bar(true);
} else {
show_admin_bar(false);
}
}
Checkout which user role you have selected on account registration. The admin bar can be hidden using the code snippet or using FluentAuth plugin.