• Hi, I keep dismissing this notification.

    “Welcome to Sydney. To get started please make sure to visit our welcome page.”

    Is there a way to get rid of it permanently? I have no idea why it keeps coming up.

    Thanks

Viewing 1 replies (of 1 total)
  • Hello there,

    Try adding this PHP snippet into a child theme’s functions. Or use Code Snippets plugin if you aren’t running any child theme.

    
    add_action('init', 'sydney_child_remove_sydney_admin_notice');
    function sydney_child_remove_sydney_admin_notice() {
      remove_action( 'admin_notices', 'sydney_welcome_admin_notice' );  
    }
    

    Regards,
    Kharis

Viewing 1 replies (of 1 total)
  • The topic ‘Disabling “Welcome to Sydney.” prompt’ is closed to new replies.