Import users from CSV with meta - Version 1.17.6.2

Version Description

  • Objects in CSV can now be printed using serialization
Download this release

Release Info

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

Code changes from version 1.17.6.1 to 1.17.6.2

classes/helper.php CHANGED
@@ -262,6 +262,9 @@ class ACUI_Helper{
262
  foreach ( $data as $element ){
263
  if( is_wp_error( $element ) )
264
  $element = $element->get_error_message();
 
 
 
265
  elseif( is_array( $element ) ){
266
  $element_string = '';
267
  $i = 0;
262
  foreach ( $data as $element ){
263
  if( is_wp_error( $element ) )
264
  $element = $element->get_error_message();
265
+ elseif( is_object( $element ) ){
266
+ $element = serialize( $element );
267
+ }
268
  elseif( is_array( $element ) ){
269
  $element_string = '';
270
  $i = 0;
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.17.6.1
7
  Author: codection
8
  Author URI: https://codection.com
9
  License: GPL2
@@ -11,7 +11,6 @@ License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
  Text Domain: import-users-from-csv-with-meta
12
  Domain Path: /languages
13
  */
14
-
15
  if ( ! defined( 'ABSPATH' ) )
16
  exit;
17
 
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.17.6.2
7
  Author: codection
8
  Author URI: https://codection.com
9
  License: GPL2
11
  Text Domain: import-users-from-csv-with-meta
12
  Domain Path: /languages
13
  */
 
14
  if ( ! defined( 'ABSPATH' ) )
15
  exit;
16
 
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.7.2
7
- Stable tag: 1.17.6.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -103,6 +103,9 @@ Plugin will automatically detect:
103
 
104
  == Changelog ==
105
 
 
 
 
106
  = 1.17.6.1 =
107
  * Force users to reset their passwords is also compatible with WP User Manager forms
108
  * Improved the way data to replace is searched preparing the emails
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.7.2
7
+ Stable tag: 1.17.6.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
103
 
104
  == Changelog ==
105
 
106
+ = 1.17.6.2 =
107
+ * Objects in CSV can now be printed using serialization
108
+
109
  = 1.17.6.1 =
110
  * Force users to reset their passwords is also compatible with WP User Manager forms
111
  * Improved the way data to replace is searched preparing the emails