• How do I remove this completely? Subscribers can still select and can then see my server IP in that widget, plus they still see its running WP, both I do not want to show.

    Cheers.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter bl4ckb34rd

    (@bl4ckb34rd)

    Nevermind, found the code snippet.

    function plt_hide_aquila_admin_theme_dashboard_widgets() {
    	$screen = get_current_screen();
    	if ( !$screen ) {
    		return;
    	}
    
    	//Remove the "Test site" widget.
    	remove_meta_box('welcome-to-aquila', 'dashboard', 'normal');
    	//Remove the "Plugin Support" widget.
    	remove_meta_box('aquila-plugin-support', 'dashboard', 'normal');
    }
    
    add_action('wp_dashboard_setup', 'plt_hide_aquila_admin_theme_dashboard_widgets', 20);
    Plugin Author GuyPrimavera

    (@guyprimavera)

    Hey bl4ckb34rd,

    Thanks for letting me know. I’ll make an option to hide the dashboard widget in the next release.

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to disable aquila dashboard widget?’ is closed to new replies.