diff --git a/src/Admin/Actions.php b/src/Admin/Actions.php index cf6384a4..79f7c0de 100644 --- a/src/Admin/Actions.php +++ b/src/Admin/Actions.php @@ -70,7 +70,8 @@ public function maybe_redirect_to_wizard() { return; } - $wizard_done = get_option( 'plausible_analytics_wizard_done', false ); + // Self-hosters should never be redirected to the settings screen, because the wizard isn't shown to them. + $wizard_done = get_option( 'plausible_analytics_wizard_done', false ) || ! empty( Helpers::get_settings()[ 'self_hosted_domain' ] ); if ( ! $wizard_done ) { $url = admin_url( 'options-general.php?page=plausible_analytics#welcome_slide' );