'; echo ''; echo ''; echo ''; } public static function content_wrap_start($action = '', $after = '', $class = '') { echo '
'; self::content_sidebar(); echo '
'; } public static function content_wrap_end() { echo '
'; echo '
'; } public static function step_1() { self::content_wrap_start('', null, 'welcome'); echo '

Welcome to the setup wizard for Bastet theme.

Thank you for choosing the Bastet theme from ThemeForest. This quick setup wizard will help you configure your new website. This wizard will install the required WordPress plugins, default content, logo and tell you a little about Help & Support options. It should only take 5 minutes.

'; self::content_wrap_end(); } public static function step_2() { $bsplugins = new BSPlugins(); $allplugins = $bsplugins->_get_plugins(); if (count($allplugins['all'])) { self::content_wrap_start('install_plugins',null); } else { self::content_wrap_start(''); } $bsplugins->envato_setup_default_plugins(); self::content_wrap_end(); } public static function step_3() { self::content_wrap_start('import_data', 'import_functions'); echo '

Demo Importer

'; echo '
If you are having problem with theme demo importer you can use one click demo import plugin for more go here
'; if(class_exists('BSCore')) { global $BSCore; $BSCore['BSThemeDemoImporter']->demo_installer(); } else { echo '

'.esc_html__('Please go back and install the require plugins first', 'bastet').'

'; } self::content_wrap_end(); } public static function step_4() { self::content_wrap_start('', ''); $support_url = ''; if( class_exists('BSCore') ) { global $BSCore; $support_url = $BSCore['SupportUrl']; } echo '

'.esc_html__( 'Theme Support', 'bastet' ).'

'; ?>

This theme comes with 6 months item support from purchase date (with the option to extend this period). This license allows you to use this theme on a single website. Please purchase an additional license to use this theme on another website.

Item Support can be accessed from http://besquares.net/support.php


Item support includes:


Item Support DOES NOT Include:

'.esc_html__( 'Congratulation, Bastet setup wizard completed successfully', 'bastet' ).''; ?>

Most changes to the website can be made through the Appearance > Customize menu from the WordPress dashboard

Advanced Users: If you are going to make changes to the theme source code please use a Child Theme rather than modifying the main theme HTML/CSS/PHP code. This allows the parent theme to receive updates without overwriting your source code changes.
See child-theme.zip in the main folder for a sample.

'; } public static function get_footer() { echo ' '.do_action( 'bastet_setup_footer_tpl' ).' '; } public static function loader_tpl() { echo '
'.esc_html__( 'Please Wait..', 'bastet' ).'
'; } } ?>