register_setup_wizard_page( $parent_slug ); } public function activate() { if ( ! Setup_Wizard::has_site_wizard_been_completed() ) { set_transient( self::SETUP_WIZARD_TRANSIENT_NAME, true ); } } public function redirect_on_first_activation() { if ( empty( get_transient( self::SETUP_WIZARD_TRANSIENT_NAME ) ) ) { return; } if ( ! is_admin() ) { return; } delete_transient( self::SETUP_WIZARD_TRANSIENT_NAME ); if ( Utils::are_we_on_elementor_domains() ) { return; } if ( Utils::is_test_environment() ) { return; } wp_safe_redirect( self_admin_url( 'admin.php?page=' . Setup_Wizard::SETUP_WIZARD_PAGE_SLUG ) ); exit; } public function __construct() { add_action( 'hello-plus-theme/admin-menu', [ $this, 'admin_menu' ], 10, 1 ); add_action( 'hello-plus/init', [ $this, 'redirect_on_first_activation' ] ); if ( ! Utils::has_hello_elementor_theme() ) { add_action( 'hello-plus/activate', [ $this, 'activate' ] ); } } }