get( 'Name' ); /*** Make changes below ***/ // Change the title and slug of your wizard page $config['page_slug'] = 'aster-it-courses'; $config['page_title'] = 'Theme Setup Wizard'; // You can remove elements here as required // Don't rename the IDs - nothing will break but your changes won't get carried through $config['steps'] = array( 'intro' => array( 'id' => 'intro', // ID for section - don't rename 'title' => __( 'Welcome to ', 'aster-it-courses' ) . $theme_title, // Section title 'icon' => 'dashboard', // Uses Dashicons 'button_text' => __( 'Start Now', 'aster-it-courses' ), // Button text 'can_skip' => false // Show a skip button? ), 'widgets' => array( 'id' => 'widgets', 'title' => __( 'Demo Importer', 'aster-it-courses' ), 'icon' => 'welcome-widgets-menus', 'button_text' => __( 'Import Demo', 'aster-it-courses' ), 'can_skip' => false ), 'done' => array( 'id' => 'done', 'title' => __( 'All Done', 'aster-it-courses' ), 'icon' => 'yes', ) ); /*** This kicks off the wizard ***/ if( class_exists( 'Whizzie' ) ) { $Whizzie = new Whizzie( $config ); }