Version Description
- Added documentation about locale and BuddyPress Extendend Profile
- Header changed to avoid any problem about plugin header
Download this release
Release Info
Developer | carazo |
Plugin | Import users from CSV with meta |
Version | 1.10.6.2 |
Comparing to | |
See all releases |
Code changes from version 1.10.6.1 to 1.10.6.2
- import-users-from-csv-with-meta.php +8 -6
- importer.php +1 -0
- readme.txt +5 -1
import-users-from-csv-with-meta.php
CHANGED
@@ -1,11 +1,13 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
Plugin Name:
|
4 |
-
Plugin URI:
|
5 |
-
Description:
|
6 |
-
|
7 |
-
|
8 |
-
Author URI:
|
|
|
|
|
9 |
Text Domain: import-users-from-csv-with-meta
|
10 |
Domain Path: /languages
|
11 |
*/
|
1 |
<?php
|
2 |
/*
|
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.10.6.2
|
7 |
+
Author: codection
|
8 |
+
Author URI: https://codection.com
|
9 |
+
License: GPL2
|
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 |
*/
|
importer.php
CHANGED
@@ -986,6 +986,7 @@ function acui_options()
|
|
986 |
<li><?php _e( "And the role assigned in this group: <em>Administrator, Moderator or Member</em>", 'import-users-from-csv-with-meta' ); ?></li>
|
987 |
<li><?php _e( "You can do it with multiple groups at the same time using commas to separate different groups, in bp_group column, i.e.: <em>group_1, group_2, group_3</em>", 'import-users-from-csv-with-meta' ); ?></li>
|
988 |
<li><?php _e( "But you will have to assign a role for each group: <em>Moderator,Moderator,Member,Member</em>", 'import-users-from-csv-with-meta' ); ?></li>
|
|
|
989 |
</ul>
|
990 |
</td>
|
991 |
</tr>
|
986 |
<li><?php _e( "And the role assigned in this group: <em>Administrator, Moderator or Member</em>", 'import-users-from-csv-with-meta' ); ?></li>
|
987 |
<li><?php _e( "You can do it with multiple groups at the same time using commas to separate different groups, in bp_group column, i.e.: <em>group_1, group_2, group_3</em>", 'import-users-from-csv-with-meta' ); ?></li>
|
988 |
<li><?php _e( "But you will have to assign a role for each group: <em>Moderator,Moderator,Member,Member</em>", 'import-users-from-csv-with-meta' ); ?></li>
|
989 |
+
<li><?php _e( "If you get some error of this kind:", 'import-users-from-csv-with-meta' ); ?> <code>Fatal error: Class 'BP_XProfile_Group'</code> <?php _e( "please enable Buddypress Extended Profile then import the csv file. You can then disable this afterwards", 'import-users-from-csv-with-meta' ); ?></li>
|
990 |
</ul>
|
991 |
</td>
|
992 |
</tr>
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://paypal.me/codection
|
|
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: 4.7.2
|
7 |
-
Stable tag: 1.10.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -70,6 +70,10 @@ Plugin will automatically detect:
|
|
70 |
|
71 |
== Changelog ==
|
72 |
|
|
|
|
|
|
|
|
|
73 |
= 1.10.6.1 =
|
74 |
* Fix error in importer.php about delete users (https://wordpress.org/support/topic/wp_delete_user-undefined/#post-8925051)
|
75 |
|
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: 4.7.2
|
7 |
+
Stable tag: 1.10.6.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
70 |
|
71 |
== Changelog ==
|
72 |
|
73 |
+
= 1.10.6.2 =
|
74 |
+
* Added documentation about locale and BuddyPress Extendend Profile
|
75 |
+
* Header changed to avoid any problem about plugin header
|
76 |
+
|
77 |
= 1.10.6.1 =
|
78 |
* Fix error in importer.php about delete users (https://wordpress.org/support/topic/wp_delete_user-undefined/#post-8925051)
|
79 |
|