If you want to show the admin bar just to Administrator users, add the following code to functions.php of child theme:
COPY CODE
add_action('after_setup_theme', 'remove_admin_bar');
function remove_admin_bar() {
if (!current_user_can('administrator') && !is_admin()) {
show_admin_bar(false);
}
}