Import users from CSV with meta - Version 1.19.1.9

Version Description

  • Improved some labels to avoid misunderstandings with email options, thanks to @blakemiller
Download this release

Release Info

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

Code changes from version 1.19.1.8 to 1.19.1.9

classes/email-options.php CHANGED
@@ -65,6 +65,12 @@ class ACUI_Email_Options{
65
  </fieldset>
66
  </td>
67
  </tr>
 
 
 
 
 
 
68
  <tr valign="top">
69
  <th scope="row"><?php _e( 'Enable mail templates:', 'import-users-from-csv-with-meta' ); ?></th>
70
  <td>
65
  </fieldset>
66
  </td>
67
  </tr>
68
+ </tbody>
69
+ </table>
70
+
71
+ <h3><?php _e( 'Email templates from this plugin', 'import-users-from-csv-with-meta' ); ?></h3>
72
+ <table class="optiontable form-table">
73
+ <tbody>
74
  <tr valign="top">
75
  <th scope="row"><?php _e( 'Enable mail templates:', 'import-users-from-csv-with-meta' ); ?></th>
76
  <td>
classes/homepage.php CHANGED
@@ -109,7 +109,7 @@ class ACUI_Homepage{
109
  <th scope="row"><label for="user_login"><?php _e( 'Send mail', 'import-users-from-csv-with-meta' ); ?></label></th>
110
  <td>
111
  <p id="sends_email_wrapper">
112
- <?php ACUIHTML()->checkbox( array( 'name' => 'sends_email', 'label' => __( 'Do you wish to send a mail with credentials and other data?', 'import-users-from-csv-with-meta' ), 'current' => 'yes', 'compare_value' => get_option( 'acui_manually_send_mail' ) ) ); ?>
113
  </p>
114
  <p id="send_email_updated_wrapper">
115
  <?php ACUIHTML()->checkbox( array( 'name' => 'send_email_updated', 'label' => __( 'Do you wish to send this mail also to users that are being updated? (not only to the one which are being created)', 'import-users-from-csv-with-meta' ), 'current' => 'yes', 'compare_value' => get_option( 'acui_manually_send_mail_updated' ) ) ); ?>
109
  <th scope="row"><label for="user_login"><?php _e( 'Send mail', 'import-users-from-csv-with-meta' ); ?></label></th>
110
  <td>
111
  <p id="sends_email_wrapper">
112
+ <?php ACUIHTML()->checkbox( array( 'name' => 'sends_email', 'label' => __( 'Do you wish to send a mail from this plugin with credentials and other data? <a href="' . admin_url( 'tools.php?page=acui&tab=mail-options' ) . '">(email template found here)</a>', 'import-users-from-csv-with-meta' ), 'current' => 'yes', 'compare_value' => get_option( 'acui_manually_send_mail' ) ) ); ?>
113
  </p>
114
  <p id="send_email_updated_wrapper">
115
  <?php ACUIHTML()->checkbox( array( 'name' => 'send_email_updated', 'label' => __( 'Do you wish to send this mail also to users that are being updated? (not only to the one which are being created)', 'import-users-from-csv-with-meta' ), 'current' => 'yes', 'compare_value' => get_option( 'acui_manually_send_mail_updated' ) ) ); ?>
classes/html.php CHANGED
@@ -215,7 +215,7 @@ class ACUI_HTML{
215
  if( !$args['array'] )
216
  $output .= ' for="' . esc_attr( $args['name'] ) . '"';
217
 
218
- $output .= '>' . esc_attr( $args['label'] );
219
  }
220
 
221
  if( $args['array'] )
215
  if( !$args['array'] )
216
  $output .= ' for="' . esc_attr( $args['name'] ) . '"';
217
 
218
+ $output .= '>' . $args['label'];
219
  }
220
 
221
  if( $args['array'] )
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.8
7
  Author: codection
8
  Author URI: https://codection.com
9
  License: GPL2
@@ -14,7 +14,7 @@ Domain Path: /languages
14
  if ( ! defined( 'ABSPATH' ) )
15
  exit;
16
 
17
- define( 'ACUI_VERSION', '1.19.1.8' );
18
 
19
  class ImportExportUsersCustomers{
20
  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.9
7
  Author: codection
8
  Author URI: https://codection.com
9
  License: GPL2
14
  if ( ! defined( 'ABSPATH' ) )
15
  exit;
16
 
17
+ define( 'ACUI_VERSION', '1.19.1.9' );
18
 
19
  class ImportExportUsersCustomers{
20
  var $file;
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.9
7
- Stable tag: 1.19.1.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -105,6 +105,9 @@ Plugin will automatically detect:
105
 
106
  == Changelog ==
107
 
 
 
 
108
  = 1.19.1.8 =
109
  * Fixed warnings in "Meta keys" tab
110
 
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.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
105
 
106
  == Changelog ==
107
 
108
+ = 1.19.1.9 =
109
+ * Improved some labels to avoid misunderstandings with email options, thanks to @blakemiller
110
+
111
  = 1.19.1.8 =
112
  * Fixed warnings in "Meta keys" tab
113