Reply To: Denied ‘Participant’ User Role to Dashboard

Home Forums WordPress Denied ‘Participant’ User Role to Dashboard Reply To: Denied ‘Participant’ User Role to Dashboard

#2721
Techy Online
Keymaster


add_action(‘after_setup_theme’, ‘remove_admin_bar’);

function remove_admin_bar() {
$user_id = get_current_user_id() ;
$role -= bbp_get_user_display_role($user_id) ;
if (role == ‘bbp_participant’ {
show_admin_bar(false);
}
}

BEST ANSWER