I updated last night the new version and I found out that wp-admin is visible to users!!! Why??? How can I disable it???
Update
————–
I had to disable it by adding the code below in fuctions.php. However this is not a solution. I’m expecting yours. Also every time I save the header builder I have to clear browser data to see the changes. This is tragic and so much time consuming. Theme still needs fixing.
add_action('after_setup_theme', 'remove_admin_bar');
function remove_admin_bar() {
if (!current_user_can('administrator') && !is_admin()) {
show_admin_bar(false);
}
}