get( 'Name' ); /*** Make changes below ***/ // Change the title and slug of your wizard page $config['page_slug'] = 'appointment-management'; $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 ', 'appointment-management' ) . $theme_title, // Section title 'icon' => 'dashboard', // Uses Dashicons 'button_text' => __( 'Start Now', 'appointment-management' ), // Button text 'can_skip' => false // Show a skip button? ), 'widgets' => array( 'id' => 'widgets', 'title' => __( 'Demo Importer', 'appointment-management' ), 'icon' => 'welcome-widgets-menus', 'button_text' => __( 'Import Demo', 'appointment-management' ), 'can_skip' => false ), 'done' => array( 'id' => 'done', 'title' => __( 'All Done', 'appointment-management' ), 'icon' => 'yes', ) ); /*** This kicks off the wizard ***/ if( class_exists( 'Whizzie' ) ) { $Whizzie = new Whizzie( $config ); }