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