Import users from CSV with meta - Version 1.19.1.1

Version Description

  • Fixed warning in screen with import results
  • Ko-fi donation link added
Download this release

Release Info

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

Code changes from version 1.19.1 to 1.19.1.1

assets/style.css CHANGED
@@ -19,7 +19,8 @@
19
  width: 100%;
20
  }
21
 
22
- .acui .sidebar_section.become_patreon{
 
23
  background-color: transparent;
24
  border: 0;
25
  }
@@ -57,7 +58,8 @@
57
  cursor: pointer;
58
  }
59
 
60
- .acui .patreon{
 
61
  backface-visibility: hidden;
62
  background-color: rgb(249, 104, 84);
63
  box-sizing: border-box;
19
  width: 100%;
20
  }
21
 
22
+ .acui .sidebar_section.become_patreon,
23
+ .acui .sidebar_section.buy_me_a_coffee{
24
  background-color: transparent;
25
  border: 0;
26
  }
58
  cursor: pointer;
59
  }
60
 
61
+ .acui .patreon,
62
+ .acui .ko-fi{
63
  backface-visibility: hidden;
64
  background-color: rgb(249, 104, 84);
65
  box-sizing: border-box;
classes/columns.php CHANGED
@@ -196,6 +196,7 @@ class ACUI_Columns{
196
  $acui_helper = new ACUI_Helper();
197
  $headers = get_option("acui_columns");
198
  $acui_restricted_fields = $acui_helper->get_restricted_fields();
 
199
 
200
  if( is_array( $headers ) && count( $headers ) > 0 ):
201
  $values = array();
196
  $acui_helper = new ACUI_Helper();
197
  $headers = get_option("acui_columns");
198
  $acui_restricted_fields = $acui_helper->get_restricted_fields();
199
+ $values_changed = array();
200
 
201
  if( is_array( $headers ) && count( $headers ) > 0 ):
202
  $values = array();
classes/homepage.php CHANGED
@@ -225,6 +225,12 @@ class ACUI_Homepage{
225
  <div><span><?php _e( 'Become a patron', 'import-users-from-csv-with-meta'); ?></span></div>
226
  </a>
227
  </div>
 
 
 
 
 
 
228
 
229
  <div class="sidebar_section" id="vote_us">
230
  <h3><?php _e( 'Rate Us', 'import-users-from-csv-with-meta'); ?></h3>
225
  <div><span><?php _e( 'Become a patron', 'import-users-from-csv-with-meta'); ?></span></div>
226
  </a>
227
  </div>
228
+
229
+ <div class="sidebar_section buy_me_a_coffee">
230
+ <a class="ko-fi" color="primary" type="button" name="buy-me-a-coffee" data-tag="buy-me-a-button" href="https://ko-fi.com/codection" role="button">
231
+ <div><span><?php _e( 'Buy me a coffee', 'import-users-from-csv-with-meta'); ?></span></div>
232
+ </a>
233
+ </div>
234
 
235
  <div class="sidebar_section" id="vote_us">
236
  <h3><?php _e( 'Rate Us', 'import-users-from-csv-with-meta'); ?></h3>
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
7
  Author: codection
8
  Author URI: https://codection.com
9
  License: GPL2
@@ -15,7 +15,7 @@ Domain Path: /languages
15
  if ( ! defined( 'ABSPATH' ) )
16
  exit;
17
 
18
- define( 'ACUI_VERSION', '1.19.1' );
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.1
7
  Author: codection
8
  Author URI: https://codection.com
9
  License: GPL2
15
  if ( ! defined( 'ABSPATH' ) )
16
  exit;
17
 
18
+ define( 'ACUI_VERSION', '1.19.1.1' );
19
 
20
  class ImportExportUsersCustomers{
21
  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.8.2
7
- Stable tag: 1.19.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -103,6 +103,10 @@ Plugin will automatically detect:
103
 
104
  == Changelog ==
105
 
 
 
 
 
106
  = 1.19.1 =
107
  * Export now allow to choose which columns export also in "Export" tab and not only in frontend
108
 
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.2
7
+ Stable tag: 1.19.1.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
103
 
104
  == Changelog ==
105
 
106
+ = 1.19.1.1 =
107
+ * Fixed warning in screen with import results
108
+ * Ko-fi donation link added
109
+
110
  = 1.19.1 =
111
  * Export now allow to choose which columns export also in "Export" tab and not only in frontend
112