Wordpress plugins
myThemes Wizard

myThemes Wizard

Version : 0.0.4
Tested up to : 4.9.8
Number of download : 15
Author : myThem.es
Average rating : 0 / 5 on 0 votes 0 votes, 0 avg.rating

Screenshots

myThemes Wizard
myThemes Wizard
myThemes Wizard
myThemes Wizard

myThemes Wizard is a free plugin that allows easily build your own custom Setup for any WordPress Themes and Plugins. This plugin is dedicated to WordPress developers. Themes and Plugins require additional support to can be integrate with myThemes Wizard Plugin. Integration To integrate features of this plugin with you theme, in functions.php, is need define 2 actions: register action and setup action. Register Action eg: function my_wizard_register( $wizard ) { ... } add_action( 'mythemes_wizard_register', 'my_wizard_register' ); Setup Action eg: function my_wizard_setup( $wizard ) { ... } add_action( 'mythemes_wizard_setup', 'my_wizard_setup' ); In register action function you will include wizard Steps and Fields. You can define recommended plugins ( one of fields type ) and if user will check some of the plugin then on begin of the setup this plugin will be Installed and Activated automatically. In setup action function you will use settings values collected from steps and field ( register function ) to setup different theme options create pages and posts. Register Action Steps and Fields eg: DropBox register-action.php So you can see in the example above a register function with 4 Steps: Step 0: Welcome Step Step 1: Website Setup Step 2: Create Pages Step 3: Install and Activate Recommended Plugins Setup Action eg: DropBox setup-action.php After in your WordPress Theme or Plugin was be added support for register and setup actions you can install the plugin. The plugin not has settings or additional config actions. To run the setup is need access the URL admin_url( '/index.php?page=mythemes-wizard' ). How you will do that is your choice. For example I include these feature in Gourmand WordPress Theme gourmand/settings/setup/wizard.php. On Admin Dashboard I create an About Page with Recommended Actions Section where is a button. This button use some additional JavaScript to install and activate the plugin myThemes Wizard and after this automatically the user is redirected to setup page. Remember this is developer tools. Steps Step type can be: zero: not display step counter and navigation buttons will be “Not right Now” and “Let’s go!” default: display step counter and navigation buttons will be “< Previous” and “Next >” setup: display step counter and navigation buttons will be “< Previous” and “Setup” if click on button Setup will start automatically setup with Install & Activate selected Plugins and do_action( 'mythemes_wizard_setup' ) other: not display step counter and by default not display navigation buttons also you can include additional element “navigation” in step args eg: Example of Custom Navigations: $wizard -> add_step( 'donate-page', array( 'type' => 'other', 'title' => __( 'Setup is already finished !' ), 'navigation' => array( array( 'label' => __( 'Dashboard' ), 'url' => esc_url( admin_url( '/' ) ) ), // OR / AND array( 'action' => 'prev-step', ), array( 'action' => 'next-step', ), // OR / AND array( 'type' => 'primary', 'label' => __( 'Setup' ), 'action' => 'setup-step' ), // OR / AND array( 'type' => 'primary', 'label' => __( 'Customize Theme' ), 'url' => esc_url( admin_url( '/customize.php' ) ) ) ) )); Fields Fields type can be: plugin – if is checked then Install and Activate the plugin Automatically on Start Setup. checkbox select url text textarea title hint html

Download now