get( 'Name' ); /** * Make changes below **/ // Change the title and slug of your wizard page $config['aviation_industry_page_slug'] = 'aviation-industry'; $config['aviation_industry_page_title'] = 'Homepage Setup'; $config['steps'] = array( 'widgets' => array( 'id' => 'widgets', 'title' => __( 'Setup Home Page', 'aviation-industry' ), 'icon' => 'welcome-widgets-menus', 'button_text' => __( 'Start Home Page Setup', 'aviation-industry' ), 'can_skip' => true ), 'done' => array( 'id' => 'done', 'title' => __( 'Customize Your Site', 'aviation-industry' ), 'icon' => 'yes', ) ); /** * This kicks off the wizard **/ if( class_exists( 'Aviation_Industry_Whizzie' ) ) { $Aviation_Industry_Whizzie = new Aviation_Industry_Whizzie( $config ); }