Version Description
- August 30, 2016 =
Fixes
- Fatal error on configuration helper page.
Download this release
Release Info
Developer | DvanKooten |
Plugin | Newsletter Sign-Up |
Version | 2.0.7 |
Comparing to | |
See all releases |
Code changes from version 2.0.6 to 2.0.7
- includes/NSU.php +0 -1
- includes/NSU_Admin.php +1 -1
- newsletter-sign-up.php +4 -4
- readme.txt +17 -6
includes/NSU.php
CHANGED
@@ -192,7 +192,6 @@ class NSU {
|
|
192 |
$request['merge_vars']['LNAME'] = substr( $name, $strpos );
|
193 |
} else {
|
194 |
$request['merge_vars']['FNAME'] = $name;
|
195 |
-
$request['merge_vars']['LNAME'] = '...';
|
196 |
}
|
197 |
|
198 |
$request['merge_vars'][$opts['name_id']] = $name;
|
192 |
$request['merge_vars']['LNAME'] = substr( $name, $strpos );
|
193 |
} else {
|
194 |
$request['merge_vars']['FNAME'] = $name;
|
|
|
195 |
}
|
196 |
|
197 |
$request['merge_vars'][$opts['name_id']] = $name;
|
includes/NSU_Admin.php
CHANGED
@@ -150,7 +150,7 @@ if (!class_exists('NSU_Admin')) {
|
|
150 |
|
151 |
}
|
152 |
|
153 |
-
require_once NSU_PLUGIN_DIR . 'includes/views/config_helper.php';
|
154 |
}
|
155 |
|
156 |
private function extract_form_config( $form_html ) {
|
150 |
|
151 |
}
|
152 |
|
153 |
+
require_once NSU_PLUGIN_DIR . '/includes/views/config_helper.php';
|
154 |
}
|
155 |
|
156 |
private function extract_form_config( $form_html ) {
|
newsletter-sign-up.php
CHANGED
@@ -3,13 +3,13 @@
|
|
3 |
Plugin Name: Newsletter Sign-Up
|
4 |
Plugin URI: https://dannyvankooten.com/wordpress-plugins/newsletter-sign-up/
|
5 |
Description: Adds various ways for your visitors to sign-up to your mailing list (checkbox, widget, form)
|
6 |
-
Version: 2.0.
|
7 |
Author: Danny van Kooten
|
8 |
Author URI: https://dannyvankooten.com
|
9 |
License: GPL2
|
10 |
*/
|
11 |
|
12 |
-
/* Copyright 2010-
|
13 |
|
14 |
This program is free software; you can redistribute it and/or modify
|
15 |
it under the terms of the GNU General Public License, version 2, as
|
@@ -29,8 +29,8 @@ if( ! defined( 'ABSPATH' ) ) {
|
|
29 |
exit;
|
30 |
}
|
31 |
|
32 |
-
define('NSU_VERSION_NUMBER', "2.0.
|
33 |
define("NSU_PLUGIN_DIR", dirname( __FILE__ ) );
|
34 |
|
35 |
require_once NSU_PLUGIN_DIR . '/includes/NSU.php';
|
36 |
-
new NSU();
|
3 |
Plugin Name: Newsletter Sign-Up
|
4 |
Plugin URI: https://dannyvankooten.com/wordpress-plugins/newsletter-sign-up/
|
5 |
Description: Adds various ways for your visitors to sign-up to your mailing list (checkbox, widget, form)
|
6 |
+
Version: 2.0.7
|
7 |
Author: Danny van Kooten
|
8 |
Author URI: https://dannyvankooten.com
|
9 |
License: GPL2
|
10 |
*/
|
11 |
|
12 |
+
/* Copyright 2010-2017 Danny van Kooten (email: hi@dannyvankooten.com)
|
13 |
|
14 |
This program is free software; you can redistribute it and/or modify
|
15 |
it under the terms of the GNU General Public License, version 2, as
|
29 |
exit;
|
30 |
}
|
31 |
|
32 |
+
define('NSU_VERSION_NUMBER', "2.0.7");
|
33 |
define("NSU_PLUGIN_DIR", dirname( __FILE__ ) );
|
34 |
|
35 |
require_once NSU_PLUGIN_DIR . '/includes/NSU.php';
|
36 |
+
new NSU();
|
readme.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
Contributors: DvanKooten
|
3 |
Donate link: https://dannyvankooten.com/donate/
|
4 |
Tags: newsletter, sign-up, mailchimp, aweber, ymlp, phplist, icontact, newsletter widget, subscribe widget
|
5 |
-
Requires at least:
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 2.0.
|
8 |
License: GPL2
|
9 |
|
10 |
Integrate your WordPress site with 3rd-party newsletter services like Aweber and YMLP. Adds various sign-up methods to your site.
|
@@ -13,6 +13,8 @@ Integrate your WordPress site with 3rd-party newsletter services like Aweber and
|
|
13 |
|
14 |
= Newsletter Sign-Up =
|
15 |
|
|
|
|
|
16 |
This plugin adds various sign-up methods to your WordPress website, like sign-up checkboxes in your comment form and a sign-up form to show in posts, pages or widget areas.
|
17 |
|
18 |
> **MailChimp user?**
|
@@ -34,8 +36,7 @@ This plugin works with *almost all* third-party email marketing services includi
|
|
34 |
**More information**
|
35 |
|
36 |
* [MailChimp for WordPress plugin](https://mc4wp.com/)
|
37 |
-
*
|
38 |
-
* Follow [@DannyvanKooten](https://twitter.com/DannyvanKooten) on Twitter
|
39 |
|
40 |
= Sign-up checkboxes =
|
41 |
Most of your commenters will be interested in your newsletter as well. This plugin makes it extremely easie for them to subscribe to your mailinglist. With the sign-up checkbox, all they have to do is check it and the plugin will subscribe them to your mailinglist.
|
@@ -92,21 +93,31 @@ For more questions and answers go have a look at the [Newsletter Sign-Up](https:
|
|
92 |
|
93 |
== Changelog ==
|
94 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
= 2.0.6 - June 20, 2016 =
|
96 |
|
97 |
Minor maintenance round. Removed obsolete HTML5 option, as 99.9% of browsers support this now.
|
98 |
|
|
|
99 |
= 2.0.5 - February 19, 2015 =
|
100 |
|
101 |
**Improvements**
|
102 |
|
103 |
- Updated all links to use HTTPS protocol
|
104 |
|
|
|
105 |
= 2.0.4 - October 4, 2014 =
|
106 |
|
107 |
* Minor code improvements and WP 4.0+ compatibility.
|
108 |
* Prevent direct file access
|
109 |
|
|
|
110 |
= 2.0.3 =
|
111 |
* Fixed broken link to settings pages after widget form
|
112 |
* Improved: better stylesheet loading, encouraged browser caching
|
@@ -205,4 +216,4 @@ Minor maintenance round. Removed obsolete HTML5 option, as 99.9% of browsers sup
|
|
205 |
* Added: Added option to set default value for e-mail and name field.
|
206 |
* Added: Option to redirect to a given url after signing-up
|
207 |
* Added: More elegant error handling.
|
208 |
-
* Fix: "Hide checkbox for subscribers" did not work after version 1.5.1
|
2 |
Contributors: DvanKooten
|
3 |
Donate link: https://dannyvankooten.com/donate/
|
4 |
Tags: newsletter, sign-up, mailchimp, aweber, ymlp, phplist, icontact, newsletter widget, subscribe widget
|
5 |
+
Requires at least: 4.1
|
6 |
+
Tested up to: 4.9
|
7 |
+
Stable tag: 2.0.7
|
8 |
License: GPL2
|
9 |
|
10 |
Integrate your WordPress site with 3rd-party newsletter services like Aweber and YMLP. Adds various sign-up methods to your site.
|
13 |
|
14 |
= Newsletter Sign-Up =
|
15 |
|
16 |
+
> This plugin is in maintenance mode, meaning we no longer develop new features or actively support it. Sorry.
|
17 |
+
|
18 |
This plugin adds various sign-up methods to your WordPress website, like sign-up checkboxes in your comment form and a sign-up form to show in posts, pages or widget areas.
|
19 |
|
20 |
> **MailChimp user?**
|
36 |
**More information**
|
37 |
|
38 |
* [MailChimp for WordPress plugin](https://mc4wp.com/)
|
39 |
+
* More [WordPress plugins](https://dannyvankooten.com/wordpress-plugins/) by ibericode
|
|
|
40 |
|
41 |
= Sign-up checkboxes =
|
42 |
Most of your commenters will be interested in your newsletter as well. This plugin makes it extremely easie for them to subscribe to your mailinglist. With the sign-up checkbox, all they have to do is check it and the plugin will subscribe them to your mailinglist.
|
93 |
|
94 |
== Changelog ==
|
95 |
|
96 |
+
= 2.0.7 - August 30, 2016 =
|
97 |
+
|
98 |
+
**Fixes**
|
99 |
+
|
100 |
+
- Fatal error on configuration helper page.
|
101 |
+
|
102 |
+
|
103 |
= 2.0.6 - June 20, 2016 =
|
104 |
|
105 |
Minor maintenance round. Removed obsolete HTML5 option, as 99.9% of browsers support this now.
|
106 |
|
107 |
+
|
108 |
= 2.0.5 - February 19, 2015 =
|
109 |
|
110 |
**Improvements**
|
111 |
|
112 |
- Updated all links to use HTTPS protocol
|
113 |
|
114 |
+
|
115 |
= 2.0.4 - October 4, 2014 =
|
116 |
|
117 |
* Minor code improvements and WP 4.0+ compatibility.
|
118 |
* Prevent direct file access
|
119 |
|
120 |
+
|
121 |
= 2.0.3 =
|
122 |
* Fixed broken link to settings pages after widget form
|
123 |
* Improved: better stylesheet loading, encouraged browser caching
|
216 |
* Added: Added option to set default value for e-mail and name field.
|
217 |
* Added: Option to redirect to a given url after signing-up
|
218 |
* Added: More elegant error handling.
|
219 |
+
* Fix: "Hide checkbox for subscribers" did not work after version 1.5.1
|