Import users from CSV with meta - Version 1.19.1.5

Version Description

  • Improved BuddyBoss compatibility, now when we include class-bp-xprofile-group.php, we check if BuddyPress is the plugin active or BuddyBoss
Download this release

Release Info

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

Code changes from version 1.19.1.4 to 1.19.1.5

addons/buddypress.php CHANGED
@@ -11,8 +11,11 @@ class ACUI_Buddypress{
11
  var $profile_groups;
12
 
13
  function __construct(){
14
- if( !class_exists( "BP_XProfile_Group" ) ){
15
- require_once( WP_PLUGIN_DIR . "/buddypress/bp-xprofile/classes/class-bp-xprofile-group.php" );
 
 
 
16
  }
17
 
18
  $this->profile_groups = $this->get_profile_groups();
11
  var $profile_groups;
12
 
13
  function __construct(){
14
+ if( !class_exists( 'BP_XProfile_Group' ) ){
15
+ if( is_plugin_active( 'buddypress/bp-loader.php' ) )
16
+ require_once( WP_PLUGIN_DIR . "/buddypress/bp-xprofile/classes/class-bp-xprofile-group.php" );
17
+ elseif( is_plugin_active( 'buddyboss-platform/bp-loader.php' ) )
18
+ require_once( WP_PLUGIN_DIR . "/buddyboss-platform/bp-xprofile/classes/class-bp-xprofile-group.php" );
19
  }
20
 
21
  $this->profile_groups = $this->get_profile_groups();
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.19.1.4
7
  Author: codection
8
  Author URI: https://codection.com
9
  License: GPL2
@@ -11,11 +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
-
15
  if ( ! defined( 'ABSPATH' ) )
16
  exit;
17
 
18
- define( 'ACUI_VERSION', '1.19.1.4' );
19
 
20
  class ImportExportUsersCustomers{
21
  var $file;
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.19.1.5
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
+ define( 'ACUI_VERSION', '1.19.1.5' );
18
 
19
  class ImportExportUsersCustomers{
20
  var $file;
readme.txt CHANGED
@@ -3,17 +3,17 @@ 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.8.3
7
- Stable tag: 1.19.1.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  Import and export users and customers using CSV files including custom user meta and roles. Integrations with lots of other plugins. Frontend upload, cron import and much more.
12
 
13
- **Try it out on your free dummy site: Click here => [https://demo.tastewp.com/import-users-from-csv-with-meta](https://demo.tastewp.com/import-users-from-csv-with-meta)**
14
-
15
  == Description ==
16
 
 
 
17
  Clean and easy-to-use import and export users and customer plugin, for WordPress and WooCommerce. It includes custom user meta to be included automatically from a CSV file and delimitation auto-detector. It also is able to send a mail to each user imported and all the meta data imported is ready to edit into user profile.
18
 
19
  * Import CSV file with users directly to your WordPress or customers into WooCommerce
@@ -105,6 +105,9 @@ Plugin will automatically detect:
105
 
106
  == Changelog ==
107
 
 
 
 
108
  = 1.19.1.4 =
109
  * Changed appearence of some buttons in the right panel
110
  * Included new strings to localize
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.9
7
+ Stable tag: 1.19.1.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  Import and export users and customers using CSV files including custom user meta and roles. Integrations with lots of other plugins. Frontend upload, cron import and much more.
12
 
 
 
13
  == Description ==
14
 
15
+ **Try it out on your free dummy site: Click here => [https://demo.tastewp.com/import-users-from-csv-with-meta](https://demo.tastewp.com/import-users-from-csv-with-meta)**
16
+
17
  Clean and easy-to-use import and export users and customer plugin, for WordPress and WooCommerce. It includes custom user meta to be included automatically from a CSV file and delimitation auto-detector. It also is able to send a mail to each user imported and all the meta data imported is ready to edit into user profile.
18
 
19
  * Import CSV file with users directly to your WordPress or customers into WooCommerce
105
 
106
  == Changelog ==
107
 
108
+ = 1.19.1.5 =
109
+ * Improved BuddyBoss compatibility, now when we include class-bp-xprofile-group.php, we check if BuddyPress is the plugin active or BuddyBoss
110
+
111
  = 1.19.1.4 =
112
  * Changed appearence of some buttons in the right panel
113
  * Included new strings to localize