Support » Plugin: Solid Security – Password, Two Factor Authentication, and Brute Force Protection » Please remove the 'Security' option from the admin bar

  • Why has the extra option to this plugin’s settings been added to the admin bar? I set the Security options once and I usually have no need to return there often. I do not need to have it in sight at each page view and find it rather intrusive this way.

    Or please make it an option for those that do find it useful.

    Thanks!

    Sander

    https://wordpress.org/plugins/better-wp-security/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter sanderbontje

    (@sanderbontje)

    To answer my own question, for the time being just add this to you theme’s function.php file:

    add_action( 'admin_bar_menu', 'remove_some_nodes_from_admin_bar_menu', 999 );
    function remove_some_nodes_from_admin_bar_menu( $wp_admin_bar ) {
    	/* Remove the intrusive 'Security' node from the admin bar added by the iThemes Security plugin */
    	$wp_admin_bar->remove_node( 'itsec_admin_bar_menu' );
    }

    Thumbs up. You should have this option built in to turn this feature off, because it is unnecesary clutter for clients sites and as well on mine. I never use it.

    Hello,

    Yes i agree with you krkt

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Please remove the 'Security' option from the admin bar’ is closed to new replies.