Version Description
- Bug fixed in WP User Manager addon
Download this release
Release Info
Developer | carazo |
Plugin | Import users from CSV with meta |
Version | 1.17.8.4 |
Comparing to | |
See all releases |
Code changes from version 1.17.8.3 to 1.17.8.4
- addons/wp-user-manager.php +3 -3
- classes/frontend.php +1 -1
- import-users-from-csv-with-meta.php +1 -1
- readme.txt +4 -1
addons/wp-user-manager.php
CHANGED
@@ -8,7 +8,7 @@ if( !is_plugin_active( 'wp-user-manager/wp-user-manager.php' ) ){
|
|
8 |
class ACUI_WP_User_Manager{
|
9 |
function __construct(){
|
10 |
add_filter( 'acui_force_reset_password_edit_profile_url', array( $this, 'force_reset_password_edit_profile_url' ) );
|
11 |
-
add_filter( 'acui_force_reset_password_redirect_condition', array( $this, 'force_reset_password_redirect_condition' ) );
|
12 |
add_action( 'wpum_account_page_content', array( $this, 'force_reset_password_notice' ), 0 );
|
13 |
add_action( 'wpum_after_user_password_recovery', array( $this, 'force_reset_save_account_details' ) );
|
14 |
}
|
@@ -22,9 +22,9 @@ class ACUI_WP_User_Manager{
|
|
22 |
return get_permalink( $result->ID ) . "/password";
|
23 |
}
|
24 |
|
25 |
-
function force_reset_password_redirect_condition(){
|
26 |
global $post;
|
27 |
-
return has_shortcode( $post->post_content, 'wpum_account' );
|
28 |
}
|
29 |
|
30 |
function force_reset_password_notice(){
|
8 |
class ACUI_WP_User_Manager{
|
9 |
function __construct(){
|
10 |
add_filter( 'acui_force_reset_password_edit_profile_url', array( $this, 'force_reset_password_edit_profile_url' ) );
|
11 |
+
add_filter( 'acui_force_reset_password_redirect_condition', array( $this, 'force_reset_password_redirect_condition' ), 10 , 1 );
|
12 |
add_action( 'wpum_account_page_content', array( $this, 'force_reset_password_notice' ), 0 );
|
13 |
add_action( 'wpum_after_user_password_recovery', array( $this, 'force_reset_save_account_details' ) );
|
14 |
}
|
22 |
return get_permalink( $result->ID ) . "/password";
|
23 |
}
|
24 |
|
25 |
+
function force_reset_password_redirect_condition( $condition ){
|
26 |
global $post;
|
27 |
+
return ( $post instanceof WP_Post ) ? has_shortcode( $post->post_content, 'wpum_account' ) : $condition;
|
28 |
}
|
29 |
|
30 |
function force_reset_password_notice(){
|
classes/frontend.php
CHANGED
@@ -269,7 +269,7 @@ class ACUI_Frontend{
|
|
269 |
|
270 |
<tr class="form-field">
|
271 |
<th scope="row"><label for=""><?php _e( 'Attribute columns', 'import-users-from-csv-with-meta' ); ?></label></th>
|
272 |
-
<td><?php _e( 'You can use columns attribute to set which columns must be exported. Use a list of fields separated by commas, for example', 'import-users-from-csv-with-meta' ); ?> <pre>[export-users columns="user_email,first_name,last_name"]</pre>
|
273 |
</td>
|
274 |
</tr>
|
275 |
|
269 |
|
270 |
<tr class="form-field">
|
271 |
<th scope="row"><label for=""><?php _e( 'Attribute columns', 'import-users-from-csv-with-meta' ); ?></label></th>
|
272 |
+
<td><?php _e( 'You can use columns attribute to set which columns must be exported and in which order. Use a list of fields separated by commas, for example', 'import-users-from-csv-with-meta' ); ?> <pre>[export-users columns="user_email,first_name,last_name"]</pre>
|
273 |
</td>
|
274 |
</tr>
|
275 |
|
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.17.8.
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
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.17.8.4
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
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
|
7 |
-
Stable tag: 1.17.8.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -103,6 +103,9 @@ Plugin will automatically detect:
|
|
103 |
|
104 |
== Changelog ==
|
105 |
|
|
|
|
|
|
|
106 |
= 1.17.8.3 =
|
107 |
* Export shortcode parameter column now also defines the order of the columns
|
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
|
7 |
+
Stable tag: 1.17.8.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
103 |
|
104 |
== Changelog ==
|
105 |
|
106 |
+
= 1.17.8.4 =
|
107 |
+
* Bug fixed in WP User Manager addon
|
108 |
+
|
109 |
= 1.17.8.3 =
|
110 |
* Export shortcode parameter column now also defines the order of the columns
|
111 |
|