Advanced Import : One Click Import for WordPress or Theme Demo Data - Version 1.0.7

Version Description

  • 2020-01-05 =
  • Fixed : Script loading when SCRIPT_DEBUG on
Download this release

Release Info

Developer addonspress
Plugin Icon 128x128 Advanced Import : One Click Import for WordPress or Theme Demo Data
Version 1.0.7
Comparing to
See all releases

Code changes from version 1.0.6 to 1.0.7

Files changed (2) hide show
  1. advanced-import.php +4 -4
  2. readme.txt +15 -3
advanced-import.php CHANGED
@@ -14,8 +14,8 @@ if ( ! defined( 'WPINC' ) ) {
14
  * Plugin Name: Advanced Import
15
  * Plugin URI: https://addonspress.com/item/advanced-import
16
  * Description: This is a short description of what the plugin does. It's displayed in the WordPress admin area.
17
- * Version: 1.0.6
18
- * Author: Addons Press
19
  * Author URI: https://addonspress.com/
20
  * License: GPL-2.0+
21
  * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
@@ -24,11 +24,11 @@ if ( ! defined( 'WPINC' ) ) {
24
  */
25
 
26
  /*Define Constants for this plugin*/
27
- define( 'ADVANCED_IMPORT_VERSION', '1.0.6' );
28
  define( 'ADVANCED_IMPORT_PLUGIN_NAME', 'advanced-import' );
29
  define( 'ADVANCED_IMPORT_PATH', plugin_dir_path( __FILE__ ) );
30
  define( 'ADVANCED_IMPORT_URL', plugin_dir_url( __FILE__ ) );
31
- define( 'ADVANCED_IMPORT_SCRIPT_PREFIX', ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min' );
32
 
33
  $upload_dir = wp_upload_dir();
34
  $advanced_import_temp = $upload_dir['basedir'] . '/advanced-import-temp/';
14
  * Plugin Name: Advanced Import
15
  * Plugin URI: https://addonspress.com/item/advanced-import
16
  * Description: This is a short description of what the plugin does. It's displayed in the WordPress admin area.
17
+ * Version: 1.0.7
18
+ * Author: AddonsPress
19
  * Author URI: https://addonspress.com/
20
  * License: GPL-2.0+
21
  * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
24
  */
25
 
26
  /*Define Constants for this plugin*/
27
+ define( 'ADVANCED_IMPORT_VERSION', '1.0.7' );
28
  define( 'ADVANCED_IMPORT_PLUGIN_NAME', 'advanced-import' );
29
  define( 'ADVANCED_IMPORT_PATH', plugin_dir_path( __FILE__ ) );
30
  define( 'ADVANCED_IMPORT_URL', plugin_dir_url( __FILE__ ) );
31
+ define( 'ADVANCED_IMPORT_SCRIPT_PREFIX', ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '.min' : '.min' );
32
 
33
  $upload_dir = wp_upload_dir();
34
  $advanced_import_temp = $upload_dir['basedir'] . '/advanced-import-temp/';
readme.txt CHANGED
@@ -4,9 +4,9 @@ Contributors: addonspress
4
  Donate link: https://addonspress.com/
5
  Tags: import, advanced import, demo import, theme import, widget import, customizer import
6
  Requires at least: 4.5
7
- Tested up to: 5.3
8
  Requires PHP: 5.6.20
9
- Stable tag: 1.0.6
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -59,8 +59,20 @@ Yes, it is free plugin.
59
 
60
  Please make sure it is exported using [Advanced Export](https://wordpress.org/plugins/advanced-export/) plugin
61
 
 
 
 
 
 
 
 
 
 
62
  == Changelog ==
63
 
 
 
 
64
  = 1.0.6 - 2019-12-02 =
65
  * Fixed : Author check fixed for CosmosWP
66
 
@@ -84,4 +96,4 @@ Please make sure it is exported using [Advanced Export](https://wordpress.org/pl
84
  * Fixed : Minor Changes
85
 
86
  = 1.0.0 =
87
- * Initial release.
4
  Donate link: https://addonspress.com/
5
  Tags: import, advanced import, demo import, theme import, widget import, customizer import
6
  Requires at least: 4.5
7
+ Tested up to: 5.3.2
8
  Requires PHP: 5.6.20
9
+ Stable tag: 1.0.7
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
59
 
60
  Please make sure it is exported using [Advanced Export](https://wordpress.org/plugins/advanced-export/) plugin
61
 
62
+ == Screenshots ==
63
+
64
+ 1. Import Main Screen
65
+ 2. Import Start Popup Message
66
+ 3. Import Complete Popup Message
67
+ 4. Import Via File
68
+ 5. Frontend of CosmosWP after Import
69
+ 6. Frontend of Opus Blog after Import
70
+
71
  == Changelog ==
72
 
73
+ = 1.0.7 - 2020-01-05 =
74
+ * Fixed : Script loading when SCRIPT_DEBUG on
75
+
76
  = 1.0.6 - 2019-12-02 =
77
  * Fixed : Author check fixed for CosmosWP
78
 
96
  * Fixed : Minor Changes
97
 
98
  = 1.0.0 =
99
+ * Initial release.