Version Description
- Bug fixed: thanks to @oldfieldmike for reporting and fixing a bug present when BuddyPress was active (https://wordpress.org/support/topic/bp_xprofile_group/#post-10265833)
Download this release
Release Info
Developer | carazo |
Plugin | Import users from CSV with meta |
Version | 1.11.3.4 |
Comparing to | |
See all releases |
Code changes from version 1.11.3.3 to 1.11.3.4
- import-users-from-csv-with-meta.php +5 -1
- readme.txt +4 -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.11.3.
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
@@ -46,6 +46,10 @@ function acui_loader(){
|
|
46 |
add_action( 'wp_ajax_acui_bulk_delete_attachment', 'acui_bulk_delete_attachment' );
|
47 |
add_action( 'acui_cron_process', 'acui_cron_process' );
|
48 |
|
|
|
|
|
|
|
|
|
49 |
if( get_option( 'acui_show_profile_fields' ) == true ){
|
50 |
add_action( "show_user_profile", "acui_extra_user_profile_fields" );
|
51 |
add_action( "edit_user_profile", "acui_extra_user_profile_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.11.3.4
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
46 |
add_action( 'wp_ajax_acui_bulk_delete_attachment', 'acui_bulk_delete_attachment' );
|
47 |
add_action( 'acui_cron_process', 'acui_cron_process' );
|
48 |
|
49 |
+
if( is_plugin_active( 'buddypress/bp-loader.php' ) && file_exists( plugin_dir_path( __DIR__ ) . 'buddypress/bp-xprofile/classes/class-bp-xprofile-group.php' ) ){
|
50 |
+
require_once( plugin_dir_path( __DIR__ ) . 'buddypress/bp-xprofile/classes/class-bp-xprofile-group.php' );
|
51 |
+
}
|
52 |
+
|
53 |
if( get_option( 'acui_show_profile_fields' ) == true ){
|
54 |
add_action( "show_user_profile", "acui_extra_user_profile_fields" );
|
55 |
add_action( "edit_user_profile", "acui_extra_user_profile_fields" );
|
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.9.4
|
7 |
-
Stable tag: 1.11.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -71,6 +71,9 @@ Plugin will automatically detect:
|
|
71 |
|
72 |
== Changelog ==
|
73 |
|
|
|
|
|
|
|
74 |
= 1.11.3.3 =
|
75 |
* Added compatibility to import levels from Indeed Ultimate Membership Pro
|
76 |
* Fixed role problems when importing
|
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.9.4
|
7 |
+
Stable tag: 1.11.3.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
71 |
|
72 |
== Changelog ==
|
73 |
|
74 |
+
= 1.11.3.4 =
|
75 |
+
* Bug fixed: thanks to @oldfieldmike for reporting and fixing a bug present when BuddyPress was active (https://wordpress.org/support/topic/bp_xprofile_group/#post-10265833)
|
76 |
+
|
77 |
= 1.11.3.3 =
|
78 |
* Added compatibility to import levels from Indeed Ultimate Membership Pro
|
79 |
* Fixed role problems when importing
|