Version Description
- Patreon link included and some other improvements to make easier support this develop
- Deprecated notices included about SMTP settings in this plugin
Download this release
Release Info
Developer | carazo |
Plugin | Import users from CSV with meta |
Version | 1.11.3.2 |
Comparing to | |
See all releases |
Code changes from version 1.11.3.1 to 1.11.3.2
- assets/style.css +34 -0
- assets/webempresa_logo.png +0 -0
- import-users-from-csv-with-meta.php +4 -4
- importer.php +28 -1
- readme.txt +5 -1
- smtp.php +1 -0
assets/style.css
CHANGED
@@ -19,6 +19,11 @@
|
|
19 |
width: 100%;
|
20 |
}
|
21 |
|
|
|
|
|
|
|
|
|
|
|
22 |
.acui .sidebar ul {
|
23 |
margin: 0;
|
24 |
padding: 0;
|
@@ -44,6 +49,35 @@
|
|
44 |
font-size: 11px;
|
45 |
}
|
46 |
|
|
|
|
|
|
|
|
|
47 |
.acui #vote_us{
|
48 |
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
}
|
19 |
width: 100%;
|
20 |
}
|
21 |
|
22 |
+
.acui .sidebar_section.become_patreon{
|
23 |
+
background-color: transparent;
|
24 |
+
border: 0;
|
25 |
+
}
|
26 |
+
|
27 |
.acui .sidebar ul {
|
28 |
margin: 0;
|
29 |
padding: 0;
|
49 |
font-size: 11px;
|
50 |
}
|
51 |
|
52 |
+
.acui .sidebar_section.webempresa img {
|
53 |
+
width: 100%;
|
54 |
+
}
|
55 |
+
|
56 |
.acui #vote_us{
|
57 |
cursor: pointer;
|
58 |
+
}
|
59 |
+
|
60 |
+
.acui .patreon{
|
61 |
+
backface-visibility: hidden;
|
62 |
+
background-color: rgb(249, 104, 84);
|
63 |
+
box-sizing: border-box;
|
64 |
+
display: inline-block;
|
65 |
+
font-weight: 700;
|
66 |
+
position: relative;
|
67 |
+
text-align: center;
|
68 |
+
text-transform: uppercase;
|
69 |
+
user-select: none;
|
70 |
+
white-space: inherit;
|
71 |
+
cursor: pointer;
|
72 |
+
width: 100%;
|
73 |
+
color: rgb(255, 255, 255) !important;
|
74 |
+
font-size: 1rem !important;
|
75 |
+
border-width: 2px;
|
76 |
+
border-style: solid;
|
77 |
+
border-color: rgb(249, 104, 84);
|
78 |
+
border-image: initial;
|
79 |
+
border-radius: 0px;
|
80 |
+
padding: 1rem 1.5rem;
|
81 |
+
text-decoration: none;
|
82 |
+
transition: all 300ms cubic-bezier(0.19, 1, 0.22, 1);
|
83 |
}
|
assets/webempresa_logo.png
ADDED
Binary file
|
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.11.3.
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
@@ -263,14 +263,14 @@ function acui_check_options(){
|
|
263 |
|
264 |
function acui_admin_tabs( $current = 'homepage' ) {
|
265 |
$tabs = array(
|
266 |
-
'homepage' => __( 'Import
|
267 |
'frontend' => __( 'Frontend', 'import-users-from-csv-with-meta' ),
|
268 |
'columns' => __( 'Extra profile fields', 'import-users-from-csv-with-meta' ),
|
269 |
'mail-options' => __( 'Mail options', 'import-users-from-csv-with-meta' ),
|
270 |
-
'smtp-settings' => __( 'SMTP settings', 'import-users-from-csv-with-meta' ),
|
271 |
'doc' => __( 'Documentation', 'import-users-from-csv-with-meta' ),
|
272 |
'cron' => __( 'Cron import', 'import-users-from-csv-with-meta' ),
|
273 |
-
'donate' => __( 'Donate', 'import-users-from-csv-with-meta' ),
|
274 |
'shop' => __( 'Shop', 'import-users-from-csv-with-meta' ),
|
275 |
'help' => __( 'Hire an expert', 'import-users-from-csv-with-meta' )
|
276 |
);
|
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.11.3.2
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
263 |
|
264 |
function acui_admin_tabs( $current = 'homepage' ) {
|
265 |
$tabs = array(
|
266 |
+
'homepage' => __( 'Import', 'import-users-from-csv-with-meta' ),
|
267 |
'frontend' => __( 'Frontend', 'import-users-from-csv-with-meta' ),
|
268 |
'columns' => __( 'Extra profile fields', 'import-users-from-csv-with-meta' ),
|
269 |
'mail-options' => __( 'Mail options', 'import-users-from-csv-with-meta' ),
|
270 |
+
'smtp-settings' => __( 'SMTP settings (deprecated)', 'import-users-from-csv-with-meta' ),
|
271 |
'doc' => __( 'Documentation', 'import-users-from-csv-with-meta' ),
|
272 |
'cron' => __( 'Cron import', 'import-users-from-csv-with-meta' ),
|
273 |
+
'donate' => __( 'Donate/Patreon', 'import-users-from-csv-with-meta' ),
|
274 |
'shop' => __( 'Shop', 'import-users-from-csv-with-meta' ),
|
275 |
'help' => __( 'Hire an expert', 'import-users-from-csv-with-meta' )
|
276 |
);
|
importer.php
CHANGED
@@ -889,11 +889,30 @@ function acui_options(){
|
|
889 |
</div>
|
890 |
|
891 |
<div class="sidebar">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
892 |
<div class="sidebar_section" style="padding:0 !important;border:none !important;background:none !important;">
|
893 |
<a href="https://codection.com/how-to-transfer-your-website-to-inmotion-hosting/" target="_blank">
|
894 |
<img src="<?php echo plugin_dir_url( __FILE__ ); ?>assets/codection-inmotion.png">
|
895 |
</a>
|
896 |
</div>
|
|
|
|
|
897 |
<div class="sidebar_section" id="vote_us">
|
898 |
<h3>Rate Us</h3>
|
899 |
<ul>
|
@@ -1554,7 +1573,7 @@ function acui_options(){
|
|
1554 |
|
1555 |
<div class="inside" style="display: block;">
|
1556 |
<img src="<?php echo $url_plugin; ?>icon_coffee.png" alt="<?php _e( 'buy me a coffee', 'import-users-from-csv-with-meta' ); ?>" style=" margin: 5px; float:left;">
|
1557 |
-
<p><?php _e( 'Hi! we are', 'import-users-from-csv-with-meta'); ?> <a href="https://twitter.com/fjcarazo" target="_blank" title="Javier Carazo">Javier Carazo</a> <?php _e( 'and
|
1558 |
<p><?php _e( 'We have been spending many hours to develop this plugin and answering questions in the forum to give you the best support. <br>If you like and use this plugin, you can <strong>buy us a cup of coffee</strong>.', 'import-users-from-csv-with-meta' ); ?></p>
|
1559 |
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
|
1560 |
<input type="hidden" name="cmd" value="_s-xclick">
|
@@ -1564,6 +1583,14 @@ function acui_options(){
|
|
1564 |
</form>
|
1565 |
<div style="clear:both;"></div>
|
1566 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1567 |
</div>
|
1568 |
|
1569 |
<?php break; ?>
|
889 |
</div>
|
890 |
|
891 |
<div class="sidebar">
|
892 |
+
<div class="sidebar_section become_patreon">
|
893 |
+
<a class="patreon" color="primary" type="button" name="become-a-patron" data-tag="become-patron-button" href="https://www.patreon.com/bePatron?c=1741454" role="button">
|
894 |
+
<div><span><?php _e( 'Become a patron', 'import-users-from-csv-with-meta'); ?></span></div>
|
895 |
+
</a>
|
896 |
+
</div>
|
897 |
+
|
898 |
+
<?php if( substr( get_locale(), 0, 2 ) == 'es' ): ?>
|
899 |
+
<div class="sidebar_section" id="webempresa">
|
900 |
+
<h3>Tu web más rápida con Webempresa</h3>
|
901 |
+
<ul>
|
902 |
+
<li><label>Además ahora un <a href="https://codection.com/25-de-descuento-en-el-mejor-hosting-en-espanol-con-webempresa/">25% de descuento</a>.</label></li>
|
903 |
+
</ul>
|
904 |
+
<a href="https://codection.com/25-de-descuento-en-el-mejor-hosting-en-espanol-con-webempresa/" target="_blank">
|
905 |
+
<img src="<?php echo plugin_dir_url( __FILE__ ); ?>assets/webempresa_logo.png">
|
906 |
+
</a>
|
907 |
+
</div>
|
908 |
+
<?php else: ?>
|
909 |
<div class="sidebar_section" style="padding:0 !important;border:none !important;background:none !important;">
|
910 |
<a href="https://codection.com/how-to-transfer-your-website-to-inmotion-hosting/" target="_blank">
|
911 |
<img src="<?php echo plugin_dir_url( __FILE__ ); ?>assets/codection-inmotion.png">
|
912 |
</a>
|
913 |
</div>
|
914 |
+
<?php endif; ?>
|
915 |
+
|
916 |
<div class="sidebar_section" id="vote_us">
|
917 |
<h3>Rate Us</h3>
|
918 |
<ul>
|
1573 |
|
1574 |
<div class="inside" style="display: block;">
|
1575 |
<img src="<?php echo $url_plugin; ?>icon_coffee.png" alt="<?php _e( 'buy me a coffee', 'import-users-from-csv-with-meta' ); ?>" style=" margin: 5px; float:left;">
|
1576 |
+
<p><?php _e( 'Hi! we are', 'import-users-from-csv-with-meta'); ?> <a href="https://twitter.com/fjcarazo" target="_blank" title="Javier Carazo">Javier Carazo</a> <?php _e( 'and all the team of', 'import-users-from-csv-with-meta' ); ?> <a href="http://codection.com">Codection</a>, <?php _e("developers of this plugin.", 'import-users-from-csv-with-meta' ); ?></p>
|
1577 |
<p><?php _e( 'We have been spending many hours to develop this plugin and answering questions in the forum to give you the best support. <br>If you like and use this plugin, you can <strong>buy us a cup of coffee</strong>.', 'import-users-from-csv-with-meta' ); ?></p>
|
1578 |
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
|
1579 |
<input type="hidden" name="cmd" value="_s-xclick">
|
1583 |
</form>
|
1584 |
<div style="clear:both;"></div>
|
1585 |
</div>
|
1586 |
+
|
1587 |
+
<h3 class="hndle"><span> <?php _e( 'Or if you prefer, you can also help us becoming a Patreon:', 'import-users-from-csv-with-meta' ); ?></span></h3>
|
1588 |
+
|
1589 |
+
<div class="inside acui" style="display: block;">
|
1590 |
+
<a class="patreon" color="primary" type="button" name="become-a-patron" data-tag="become-patron-button" href="https://www.patreon.com/bePatron?c=1741454" role="button">
|
1591 |
+
<div class="oosjif-1 jFPfxp"><span>Become a patron</span></div>
|
1592 |
+
</a>
|
1593 |
+
</div>
|
1594 |
</div>
|
1595 |
|
1596 |
<?php break; ?>
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ 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: 4.9.4
|
7 |
-
Stable tag: 1.11.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -71,6 +71,10 @@ Plugin will automatically detect:
|
|
71 |
|
72 |
== Changelog ==
|
73 |
|
|
|
|
|
|
|
|
|
74 |
= 1.11.3.1 =
|
75 |
* Thanks to Sebastian Mellmann(@xenator) a bug have been solved in password management in new users
|
76 |
|
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: 4.9.4
|
7 |
+
Stable tag: 1.11.3.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
71 |
|
72 |
== Changelog ==
|
73 |
|
74 |
+
= 1.11.3.2 =
|
75 |
+
* Patreon link included and some other improvements to make easier support this develop
|
76 |
+
* Deprecated notices included about SMTP settings in this plugin
|
77 |
+
|
78 |
= 1.11.3.1 =
|
79 |
* Thanks to Sebastian Mellmann(@xenator) a bug have been solved in password management in new users
|
80 |
|
smtp.php
CHANGED
@@ -116,6 +116,7 @@ function acui_smtp() {
|
|
116 |
|
117 |
<div class="wrap">
|
118 |
<h2><?php _e('Import User From CSV With Meta - SMTP server options', 'acui'); ?></h2>
|
|
|
119 |
<form method="post" action="" id="acui_smtp_options">
|
120 |
<?php wp_nonce_field('email-config'); ?>
|
121 |
|
116 |
|
117 |
<div class="wrap">
|
118 |
<h2><?php _e('Import User From CSV With Meta - SMTP server options', 'acui'); ?></h2>
|
119 |
+
<div style="background-color: red; color: white;">This feature is deprecated. Please use better a SMTP plugin from the repository specialized in this kind of configurations.</div>
|
120 |
<form method="post" action="" id="acui_smtp_options">
|
121 |
<?php wp_nonce_field('email-config'); ?>
|
122 |
|