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