get( 'Name' ); /** * Make changes below **/ // Change the title and slug of your wizard page $config['architecture_building_page_slug'] = 'architecture-building'; $config['architecture_building_page_title'] = 'Begin Installation'; $config['steps'] = array( 'plugins' => array( 'id' => 'plugins', 'title' => __( 'Install and Activate Recommended Plugins', 'architecture-building' ), 'icon' => 'admin-plugins', 'button_text' => __( 'Install Recommended Plugins', 'architecture-building' ), 'can_skip' => true ), 'widgets' => array( 'id' => 'widgets', 'title' => __( 'Begin With Demo Import', 'architecture-building' ), 'icon' => 'welcome-widgets-menus', 'button_text' => __( 'Begin With Demo Import', 'architecture-building' ), 'can_skip' => true ), 'done' => array( 'id' => 'done', 'title' => __( 'Customize Your Site', 'architecture-building' ), 'icon' => 'yes', ) ); /** * This kicks off the wizard **/ if( class_exists( 'Architecture_Building_Whizzie' ) ) { $Architecture_Building_Whizzie = new Architecture_Building_Whizzie( $config ); }