Import users from CSV with meta - Version 1.15.3.5

Version Description

  • Bug fixed in "Mail options"
Download this release

Release Info

Developer carazo
Plugin Icon 128x128 Import users from CSV with meta
Version 1.15.3.5
Comparing to
See all releases

Code changes from version 1.15.3.4 to 1.15.3.5

classes/email-options.php CHANGED
@@ -32,8 +32,8 @@ class ACUI_Email_Options{
32
  </legend>
33
  <label for="automatic_created_edited_wordpress_email">
34
  <select name="automatic_created_edited_wordpress_email" id="automatic_created_edited_wordpress_email">
35
- <option <?php selected( $automatic_created_edited_wordpress_email, false ); ?> value="false"><?php _e( "Deactivate WordPress automatic email when an user is created or edited", 'import-users-from-csv-with-meta' ) ;?></option>
36
- <option <?php selected( $automatic_created_edited_wordpress_email, true ); ?> value="true"><?php _e( 'Activate WordPress automatic email when an user is created or edited', 'import-users-from-csv-with-meta' ); ?></option>
37
  </select>
38
  <span class="description"><? _e( "When you create or update an user, WordPress prepare and send automatic email, you can deactivate it here.", 'import-users-from-csv-with-meta' ); ?></span>
39
  </label>
@@ -49,8 +49,8 @@ class ACUI_Email_Options{
49
  </legend>
50
  <label for="automatic_wordpress_email">
51
  <select name="automatic_wordpress_email" id="automatic_wordpress_email">
52
- <option <?php selected( $automatic_wordpress_email, false ); ?> value="false"><?php _e( "Deactivate WordPress automatic email when an user is updated or his password is changed", 'import-users-from-csv-with-meta' ) ;?></option>
53
- <option <?php selected( $automatic_wordpress_email, true ); ?> value="true"><?php _e( 'Activate WordPress automatic email when an user is updated or his password is changed', 'import-users-from-csv-with-meta' ); ?></option>
54
  </select>
55
  <span class="description"><? _e( "When you update an user or change his password, WordPress prepare and send automatic email, you can deactivate it here.", 'import-users-from-csv-with-meta' ); ?></span>
56
  </label>
32
  </legend>
33
  <label for="automatic_created_edited_wordpress_email">
34
  <select name="automatic_created_edited_wordpress_email" id="automatic_created_edited_wordpress_email">
35
+ <option <?php selected( $automatic_created_edited_wordpress_email, "false" ); ?> value="false"><?php _e( "Deactivate WordPress automatic email when an user is created or edited", 'import-users-from-csv-with-meta' ) ;?></option>
36
+ <option <?php selected( $automatic_created_edited_wordpress_email, "true" ); ?> value="true"><?php _e( 'Activate WordPress automatic email when an user is created or edited', 'import-users-from-csv-with-meta' ); ?></option>
37
  </select>
38
  <span class="description"><? _e( "When you create or update an user, WordPress prepare and send automatic email, you can deactivate it here.", 'import-users-from-csv-with-meta' ); ?></span>
39
  </label>
49
  </legend>
50
  <label for="automatic_wordpress_email">
51
  <select name="automatic_wordpress_email" id="automatic_wordpress_email">
52
+ <option <?php selected( $automatic_wordpress_email, "false" ); ?> value="false"><?php _e( "Deactivate WordPress automatic email when an user is updated or his password is changed", 'import-users-from-csv-with-meta' ) ;?></option>
53
+ <option <?php selected( $automatic_wordpress_email, "true" ); ?> value="true"><?php _e( 'Activate WordPress automatic email when an user is updated or his password is changed', 'import-users-from-csv-with-meta' ); ?></option>
54
  </select>
55
  <span class="description"><? _e( "When you update an user or change his password, WordPress prepare and send automatic email, you can deactivate it here.", 'import-users-from-csv-with-meta' ); ?></span>
56
  </label>
import-users-from-csv-with-meta.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Import and export users and customers
4
  Plugin URI: https://www.codection.com
5
  Description: Using this plugin you will be able to import and export users or customers choosing many options and interacting with lots of other plugins
6
- Version: 1.15.3.4
7
  Author: codection
8
  Author URI: https://codection.com
9
  License: GPL2
3
  Plugin Name: Import and export users and customers
4
  Plugin URI: https://www.codection.com
5
  Description: Using this plugin you will be able to import and export users or customers choosing many options and interacting with lots of other plugins
6
+ Version: 1.15.3.5
7
  Author: codection
8
  Author URI: https://codection.com
9
  License: GPL2
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://codection.com/go/donate-import-users-from-csv-with-meta/
4
  Tags: csv, import, importer, meta data, meta, user, users, user meta, editor, profile, custom, fields, delimiter, update, insert
5
  Requires at least: 3.4
6
  Tested up to: 5.3.2
7
- Stable tag: 1.15.3.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -98,6 +98,9 @@ Plugin will automatically detect:
98
 
99
  == Changelog ==
100
 
 
 
 
101
  = 1.15.3.4 =
102
  * You can now use WordPress default user edited and created emails when importing users
103
  * WooCommerce Membership by RightPress compatibility included, now you can assign users to their plan while they are being imported
4
  Tags: csv, import, importer, meta data, meta, user, users, user meta, editor, profile, custom, fields, delimiter, update, insert
5
  Requires at least: 3.4
6
  Tested up to: 5.3.2
7
+ Stable tag: 1.15.3.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
98
 
99
  == Changelog ==
100
 
101
+ = 1.15.3.5 =
102
+ * Bug fixed in "Mail options"
103
+
104
  = 1.15.3.4 =
105
  * You can now use WordPress default user edited and created emails when importing users
106
  * WooCommerce Membership by RightPress compatibility included, now you can assign users to their plan while they are being imported