get( 'Name' ); /** * Make changes below **/ // Change the title and slug of your wizard page $config['air_ticket_booking_page_slug'] = 'air-ticket-booking'; $config['air_ticket_booking_page_title'] = 'Homepage Setup'; $config['steps'] = array( 'plugins' => array( 'id' => 'plugins', 'title' => __( 'Install and Activate Essential Plugins', 'air-ticket-booking' ), 'icon' => 'admin-plugins', 'button_text' => __( 'Install Plugins', 'air-ticket-booking' ), 'can_skip' => true ), 'widgets' => array( 'id' => 'widgets', 'title' => __( 'Setup Home Page', 'air-ticket-booking' ), 'icon' => 'welcome-widgets-menus', 'button_text' => __( 'Start Home Page Setup', 'air-ticket-booking' ), 'button_url' => esc_url( admin_url( 'themes.php?page=ediot-template-importer' ) ), 'can_skip' => true ) ); /** * This kicks off the wizard **/ if( class_exists( 'Air_Ticket_Booking_Whizzie' ) ) { $Air_Ticket_Booking_Whizzie = new Air_Ticket_Booking_Whizzie( $config ); }