/home/glownati/www/wp/wp-content/themes/transport-solutions/core/includes/importer/config.php
<?php
/**
* Settings for theme wizard
*
* @package Whizzie
* @author misbahwp
* @since 1.0.0
*/
/**
* Define constants
**/
if ( ! defined( 'WHIZZIE_DIR' ) ) {
define( 'WHIZZIE_DIR', dirname( __FILE__ ) );
}
// Load the Whizzie class and other dependencies
require trailingslashit( WHIZZIE_DIR ) . 'whizzie.php';
// Gets the theme object
$current_theme = wp_get_theme();
$theme_title = $current_theme->get( 'Name' );
/**
* Make changes below
**/
// Change the title and slug of your wizard page
$config['page_slug'] = 'transport-solutions';
$config['page_title'] = 'MI Importer';
// 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 ', 'transport-solutions' ) . $theme_title, // Section title
'icon' => 'dashboard', // Uses Dashicons
'button_text' => __( 'Start Now', 'transport-solutions' ), // Button text
'can_skip' => false // Show a skip button?
),
'plugins' => array(
'id' => 'plugins',
'title' => __( 'Plugins', 'transport-solutions' ),
'icon' => 'admin-plugins',
'button_text' => __( 'Install Plugins', 'transport-solutions' ),
'can_skip' => false
),
'widgets' => array(
'id' => 'widgets',
'title' => __( 'Demo Importer', 'transport-solutions' ),
'icon' => 'welcome-widgets-menus',
'button_text' => __( 'Import Demo', 'transport-solutions' ),
'can_skip' => false
),
'done' => array(
'id' => 'done',
'title' => __( 'All Done', 'transport-solutions' ),
'icon' => 'yes',
)
);
/**
* This kicks off the wizard
**/
if( class_exists( 'Whizzie' ) ) {
$Whizzie = new Whizzie( $config );
}