Viewing 4 replies - 1 through 4 (of 4 total)
  • Burhan Nasir

    (@burhandodhy)

    Hi, there is no settings option to remove this bar. But you can add this code in your theme functions.php file.

    
    add_action( 'admin_bar_menu', 'remove_analytify_bar_menu', 999 );
    
    function remove_analytify_bar_menu( $wp_admin_bar ) {
    	$wp_admin_bar->remove_node( 'analytify' );
    }
    

    Cheers

    Plugin Author Adnan

    (@hiddenpearls)

    @webwavesca

    Let me know if above code doesn’t work.

    Thread Starter webwavesca

    (@webwavesca)

    That did it. Thanks.

    Plugin Author Adnan

    (@hiddenpearls)

    I’m glad to hear this.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Removing Top Admin Menu’ is closed to new replies.