Some themes add a WP admin bar for all users that are logged in.
This code, if added using the Code Snippets plugin, will remove the admin bar for all users except for administrators:
add_action('after_setup_theme', 'remove_admin_bar');
Â
function remove_admin_bar() {
if (!current_user_can('administrator') && !is_admin()) {
  show_admin_bar(false);
}
}