Version Description
- user_login and show_admin_bar_front are included as WordPress core fields to avoid showing it as custom meta_keys thanks to Michael Finkenberger
Download this release
Release Info
Developer | carazo |
Plugin | Import users from CSV with meta |
Version | 1.14.3.8 |
Comparing to | |
See all releases |
Code changes from version 1.14.3.7 to 1.14.3.8
- import-users-from-csv-with-meta.php +4 -3
- readme.txt +5 -1
import-users-from-csv-with-meta.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Import users from CSV with meta
|
4 |
Plugin URI: https://www.codection.com
|
5 |
Description: This plugins allows to import users using CSV files to WP database automatically
|
6 |
-
Version: 1.14.3.
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
@@ -11,9 +11,10 @@ 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 |
-
if ( ! defined( 'ABSPATH' ) )
|
|
|
15 |
|
16 |
-
$wp_users_fields = array( "id", "user_nicename", "user_url", "display_name", "nickname", "first_name", "last_name", "description", "jabber", "aim", "yim", "user_registered", "password", "user_pass", "locale" );
|
17 |
$wp_min_fields = array("Username", "Email");
|
18 |
$acui_fields = array( "bp_group", "bp_group_role", "role" );
|
19 |
$acui_restricted_fields = array_merge( $wp_users_fields, $wp_min_fields, $acui_fields );
|
3 |
Plugin Name: Import users from CSV with meta
|
4 |
Plugin URI: https://www.codection.com
|
5 |
Description: This plugins allows to import users using CSV files to WP database automatically
|
6 |
+
Version: 1.14.3.8
|
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 |
|
17 |
+
$wp_users_fields = array( "id", "user_nicename", "user_url", "display_name", "nickname", "first_name", "last_name", "description", "jabber", "aim", "yim", "user_registered", "password", "user_pass", "locale", "show_admin_bar_front", "user_login" );
|
18 |
$wp_min_fields = array("Username", "Email");
|
19 |
$acui_fields = array( "bp_group", "bp_group_role", "role" );
|
20 |
$acui_restricted_fields = array_merge( $wp_users_fields, $wp_min_fields, $acui_fields );
|
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.2.3
|
7 |
-
Stable tag: 1.14.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -91,6 +91,10 @@ Plugin will automatically detect:
|
|
91 |
|
92 |
== Changelog ==
|
93 |
|
|
|
|
|
|
|
|
|
94 |
= 1.14.3.7 =
|
95 |
* New filters added to custom message shown in log or regular import
|
96 |
* Last roles used are remembered in import, to avoid you have to choose all time different roles
|
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.2.3
|
7 |
+
Stable tag: 1.14.3.8
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
91 |
|
92 |
== Changelog ==
|
93 |
|
94 |
+
= 1.14.3.8 =
|
95 |
+
* user_login and show_admin_bar_front are included as WordPress core fields to avoid showing it as custom meta_keys thanks to
|
96 |
+
Michael Finkenberger
|
97 |
+
|
98 |
= 1.14.3.7 =
|
99 |
* New filters added to custom message shown in log or regular import
|
100 |
* Last roles used are remembered in import, to avoid you have to choose all time different roles
|