Import users from CSV with meta - Version 1.15.5.8

Version Description

  • Export improved to avoid more data to be exported as date
  • Tested up to WordPress 4.0
Download this release

Release Info

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

Code changes from version 1.15.5.7 to 1.15.5.8

classes/export.php CHANGED
@@ -82,8 +82,8 @@ class ACUI_Exporter{
82
 
83
  function prepare( $key, $value, $datetime_format ){
84
  $timestamp_keys = array( 'wc_last_active' );
85
- $non_date_keys = apply_filters( 'acui_export_non_date_keys', array( 'billing_phone' ) );
86
-
87
  if( is_array( $value ) )
88
  return serialize( $value );
89
  elseif( in_array( $key, $non_date_keys ) ){
82
 
83
  function prepare( $key, $value, $datetime_format ){
84
  $timestamp_keys = array( 'wc_last_active' );
85
+ $non_date_keys = apply_filters( 'acui_export_non_date_keys', array_merge( $this->user_data, array( 'billing_phone' ) ) );
86
+
87
  if( is_array( $value ) )
88
  return serialize( $value );
89
  elseif( in_array( $key, $non_date_keys ) ){
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.5.7
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.5.8
7
  Author: codection
8
  Author URI: https://codection.com
9
  License: GPL2
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: carazo, hornero
3
  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.5.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -99,6 +99,10 @@ Plugin will automatically detect:
99
 
100
  == Changelog ==
101
 
 
 
 
 
102
  = 1.15.5.7 =
103
  * List of hooks created and included
104
 
3
  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.4
7
+ Stable tag: 1.15.5.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
99
 
100
  == Changelog ==
101
 
102
+ = 1.15.5.8 =
103
+ * Export improved to avoid more data to be exported as date
104
+ * Tested up to WordPress 4.0
105
+
106
  = 1.15.5.7 =
107
  * List of hooks created and included
108