Version Description
- Fixed a problem with a nonce that was bad named
Download this release
Release Info
Developer | carazo |
Plugin | Import users from CSV with meta |
Version | 1.14.3.6 |
Comparing to | |
See all releases |
Code changes from version 1.14.3.5 to 1.14.3.6
- assets/email-template-attachment-admin.js +2 -2
- classes/homepage.php +0 -12
- import-users-from-csv-with-meta.php +2 -1
- readme.txt +4 -1
assets/email-template-attachment-admin.js
CHANGED
@@ -29,7 +29,7 @@
|
|
29 |
var data = {
|
30 |
'action': 'acui_refresh_enable_email_templates',
|
31 |
'enable': enable,
|
32 |
-
'security': email_template_attachment_admin.
|
33 |
};
|
34 |
|
35 |
$.post( ajaxurl, data, function( response ) {
|
@@ -44,7 +44,7 @@
|
|
44 |
var data = {
|
45 |
'action': 'acui_email_template_selected',
|
46 |
'email_template_selected': $( '#email_template_selected' ).val(),
|
47 |
-
'security': email_template_attachment_admin.
|
48 |
};
|
49 |
|
50 |
$.post( ajaxurl, data, function( response ) {
|
29 |
var data = {
|
30 |
'action': 'acui_refresh_enable_email_templates',
|
31 |
'enable': enable,
|
32 |
+
'security': email_template_attachment_admin.security,
|
33 |
};
|
34 |
|
35 |
$.post( ajaxurl, data, function( response ) {
|
44 |
var data = {
|
45 |
'action': 'acui_email_template_selected',
|
46 |
'email_template_selected': $( '#email_template_selected' ).val(),
|
47 |
+
'security': email_template_attachment_admin.security,
|
48 |
};
|
49 |
|
50 |
$.post( ajaxurl, data, function( response ) {
|
classes/homepage.php
CHANGED
@@ -207,23 +207,11 @@ class ACUI_Homepage{
|
|
207 |
</a>
|
208 |
</div>
|
209 |
|
210 |
-
<?php if( substr( get_locale(), 0, 2 ) == 'es' ): ?>
|
211 |
-
<div class="sidebar_section" id="iontics">
|
212 |
-
<h3>Tu web en el hosting más rápido</h3>
|
213 |
-
<ul>
|
214 |
-
<li><label>Incluye experto técnico WordPress ilimitado.</label></li>
|
215 |
-
</ul>
|
216 |
-
<a href="https://www.iontics.com/hosting-wordpress/?utm_source=banner&utm_medium=CodectionPlugin&utm_campaign=pluginswp" target="_blank" rel="noopener">
|
217 |
-
<img src="<?php echo esc_url( plugins_url( 'assets/iontics_logo.svg', dirname( __FILE__ ) ) ); ?>">
|
218 |
-
</a>
|
219 |
-
</div>
|
220 |
-
<?php else: ?>
|
221 |
<div class="sidebar_section" style="padding:0 !important;border:none !important;background:none !important;">
|
222 |
<a href="https://codection.com/how-to-transfer-your-website-to-inmotion-hosting/" target="_blank" rel="noopener">
|
223 |
<img src="<?php echo esc_url( plugins_url( 'assets/codection-inmotion.png', dirname( __FILE__ ) ) ); ?>"/>
|
224 |
</a>
|
225 |
</div>
|
226 |
-
<?php endif; ?>
|
227 |
|
228 |
<div class="sidebar_section" id="vote_us">
|
229 |
<h3><?php _e( 'Rate Us', 'import-users-from-csv-with-meta'); ?></h3>
|
207 |
</a>
|
208 |
</div>
|
209 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
210 |
<div class="sidebar_section" style="padding:0 !important;border:none !important;background:none !important;">
|
211 |
<a href="https://codection.com/how-to-transfer-your-website-to-inmotion-hosting/" target="_blank" rel="noopener">
|
212 |
<img src="<?php echo esc_url( plugins_url( 'assets/codection-inmotion.png', dirname( __FILE__ ) ) ); ?>"/>
|
213 |
</a>
|
214 |
</div>
|
|
|
215 |
|
216 |
<div class="sidebar_section" id="vote_us">
|
217 |
<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 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.3.
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
@@ -11,6 +11,7 @@ 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 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
15 |
|
16 |
$wp_users_fields = array( "id", "user_nicename", "user_url", "display_name", "nickname", "first_name", "last_name", "description", "jabber", "aim", "yim", "user_registered", "password", "user_pass", "locale" );
|
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.3.6
|
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 |
+
|
15 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
16 |
|
17 |
$wp_users_fields = array( "id", "user_nicename", "user_url", "display_name", "nickname", "first_name", "last_name", "description", "jabber", "aim", "yim", "user_registered", "password", "user_pass", "locale" );
|
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.2.3
|
7 |
-
Stable tag: 1.14.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -91,6 +91,9 @@ Plugin will automatically detect:
|
|
91 |
|
92 |
== Changelog ==
|
93 |
|
|
|
|
|
|
|
94 |
= 1.14.3.5 =
|
95 |
* Removed some tags when printing log in cron job
|
96 |
* Improved error message with Customer Area Addon
|
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.2.3
|
7 |
+
Stable tag: 1.14.3.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
91 |
|
92 |
== Changelog ==
|
93 |
|
94 |
+
= 1.14.3.6 =
|
95 |
+
* Fixed a problem with a nonce that was bad named
|
96 |
+
|
97 |
= 1.14.3.5 =
|
98 |
* Removed some tags when printing log in cron job
|
99 |
* Improved error message with Customer Area Addon
|