• Resolved justano

    (@justano)


    Hello!
    I enabled “prevention core login” but the admin bar is still showing for contributors.
    How can I remove the bar for all user-roles?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @justano,

    If you want to remove the admin bar for all other users except admin then you will need to use this code and paste it in your active theme’s fucntions.php file at the end of it.

    Here it is:

    //For removing admin bar for others
    add_action( 'after_setup_theme', 'remove_admin_bar' );
    function remove_admin_bar() {
    if (  !current_user_can( 'admin' ) ) {
    show_admin_bar( false );
    }
    }

    Let me know if it helps or not and I will get back to you.
    Regards!

    Thread Starter justano

    (@justano)

    It worked.
    Thank you!

    Thread Starter justano

    (@justano)

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove admin bar for all user roles except admin’ is closed to new replies.