Import users from CSV with meta - Version 1.14.0.4

Version Description

= 1.0 = * First installation

Download this release

Release Info

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

Code changes from version 1.14.0.3 to 1.14.0.4

Files changed (2) hide show
  1. import-users-from-csv-with-meta.php +2 -2
  2. readme.txt +18 -5
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.0.3
7
  Author: codection
8
  Author URI: https://codection.com
9
  License: GPL2
@@ -434,7 +434,7 @@ function acui_save_mail_template( $form_data ){
434
 
435
  $automattic_wordpress_email = sanitize_text_field( $form_data["automattic_wordpress_email"] );
436
  $subject_mail = sanitize_text_field( $form_data["subject_mail"] );
437
- $body_mail = sanitize_textarea_field( $form_data["body_mail"] );
438
  $template_id = intval( $form_data["template_id"] );
439
  $email_template_attachment_id = intval( $form_data["email_template_attachment_id"] );
440
 
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.0.4
7
  Author: codection
8
  Author URI: https://codection.com
9
  License: GPL2
434
 
435
  $automattic_wordpress_email = sanitize_text_field( $form_data["automattic_wordpress_email"] );
436
  $subject_mail = sanitize_text_field( $form_data["subject_mail"] );
437
+ $body_mail = wp_kses_post( $form_data["body_mail"] );
438
  $template_id = intval( $form_data["template_id"] );
439
  $email_template_attachment_id = intval( $form_data["email_template_attachment_id"] );
440
 
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Import users from CSV with meta ===
2
  Contributors: carazo, hornero
3
- 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: 5.1
7
- Stable tag: 1.14.0.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -17,13 +17,15 @@ Clean and easy-to-use Import users plugin. It includes custom user meta to be in
17
  * Import CSV file with users directly to your WordPress
18
  * Import thousends of users in only some seconds
19
  * You can also import meta-data like data from WooCommerce customers using the correct meta_keys
20
- * Send a mail to every new user
 
21
  * Use your own
22
  * You can also update data of each user
23
  * Assing a role
24
  * Create a cron task to import users periodically
25
  * Edit the metadata (you will be able to edit the metadata imported using metakeys directly in the profile of each user)
26
  * Read our documentation
 
27
  * Ask anything in support forum, we try to give the best support
28
 
29
  Moreover this plugin is compatible with:
@@ -52,7 +54,7 @@ In Codection we have more plugins, please take a look to them.
52
  * [RedSys Gateway for Goodlayers Tourmaster Pro a plugin to receive payments using RedSys in WordPress using Goodlayers Tourmaster Pro](https://codection.com/producto/redsys-gateway-for-goodlayers-tourmaster-pro/) (premium)
53
  * [Clean Login a plugin to create your own register, log in, lost password and update profile forms](https://wordpress.org/plugins/clean-login/) (free)
54
 
55
- ## **Basics**
56
 
57
  * Import users from a CSV easily
58
  * And also extra profile information with the user meta data (included in the CSV with your custom fields)
@@ -60,7 +62,7 @@ In Codection we have more plugins, please take a look to them.
60
  * All your users will be created/updated with the updated information, and of course including the user meta
61
  * Autodetect delimiter compatible with `comma , `, `semicolon ; ` and `bar | `
62
 
63
- ## **Usage**
64
 
65
  Once the plugin is installed you can use it. Go to Tools menu and there, there will be a section called _Insert users from CSV_. Just choose your CSV file and go!
66
 
@@ -88,6 +90,9 @@ Plugin will automatically detect:
88
 
89
  == Changelog ==
90
 
 
 
 
91
  = 1.14.0.3 =
92
  * Security fixes to prevent Reflected Cross Site Scripting (XSS) and Cross Site Request Forgery (CSRF), thanks to Application Security for reporting
93
 
@@ -740,6 +745,14 @@ You can use those labels if you want to set data adapted to the WordPress defaul
740
 
741
  You can upload as many files as you want, but all must have the same columns. If you upload another file, the columns will change to the form of last file uploaded.
742
 
 
 
 
 
 
 
 
 
743
  = Free and premium support =
744
 
745
  You can get:
1
  === Import users from CSV with meta ===
2
  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.1
7
+ Stable tag: 1.14.0.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
17
  * Import CSV file with users directly to your WordPress
18
  * Import thousends of users in only some seconds
19
  * You can also import meta-data like data from WooCommerce customers using the correct meta_keys
20
+ * You can assign roles while importing
21
+ * Send a mail to every new user, this mails can be saved as templates and are fully customizable
22
  * Use your own
23
  * You can also update data of each user
24
  * Assing a role
25
  * Create a cron task to import users periodically
26
  * Edit the metadata (you will be able to edit the metadata imported using metakeys directly in the profile of each user)
27
  * Read our documentation
28
+ * Extend the plugin using the hooks we provide
29
  * Ask anything in support forum, we try to give the best support
30
 
31
  Moreover this plugin is compatible with:
54
  * [RedSys Gateway for Goodlayers Tourmaster Pro a plugin to receive payments using RedSys in WordPress using Goodlayers Tourmaster Pro](https://codection.com/producto/redsys-gateway-for-goodlayers-tourmaster-pro/) (premium)
55
  * [Clean Login a plugin to create your own register, log in, lost password and update profile forms](https://wordpress.org/plugins/clean-login/) (free)
56
 
57
+ ### **Basics**
58
 
59
  * Import users from a CSV easily
60
  * And also extra profile information with the user meta data (included in the CSV with your custom fields)
62
  * All your users will be created/updated with the updated information, and of course including the user meta
63
  * Autodetect delimiter compatible with `comma , `, `semicolon ; ` and `bar | `
64
 
65
+ ### **Usage**
66
 
67
  Once the plugin is installed you can use it. Go to Tools menu and there, there will be a section called _Insert users from CSV_. Just choose your CSV file and go!
68
 
90
 
91
  == Changelog ==
92
 
93
+ = 1.14.0.3 =
94
+ * Fix to save email options bug (that appeared in last version)
95
+
96
  = 1.14.0.3 =
97
  * Security fixes to prevent Reflected Cross Site Scripting (XSS) and Cross Site Request Forgery (CSRF), thanks to Application Security for reporting
98
 
745
 
746
  You can upload as many files as you want, but all must have the same columns. If you upload another file, the columns will change to the form of last file uploaded.
747
 
748
+ = This plugin saved me a lot of time and work. Where can I donate? =
749
+
750
+ Thanks, donations help us to continue improving our plugins and allow us to give the best support in the forums [Donate Here via PayPal.](https://codection.com/go/donate-import-users-from-csv-with-meta/)
751
+
752
+ = I'm not sure I will be able to import all users with correct data and roles. Will you do it for me? =
753
+
754
+ Of course! In Codection we help you to import, migrate, synchronized, update or any other operation you will need to do with your users. Contact us at contacto@codection.com for more information.
755
+
756
  = Free and premium support =
757
 
758
  You can get: