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