Version Description
- Clarified further a couple of options that people were having problems with.
Download this release
Release Info
Developer | rhyswynne |
Plugin | WordPress Email Marketing Plugin – WP Email Capture |
Version | 3.6.4 |
Comparing to | |
See all releases |
Code changes from version 3.6.3 to 3.6.4
- inc/options.php +2 -2
- readme.txt +5 -2
- wp-email-capture.php +2 -2
inc/options.php
CHANGED
@@ -267,7 +267,7 @@ function wp_email_capture_free_options() {
|
|
267 |
|
268 |
<tr valign="top">
|
269 |
|
270 |
-
<th scope="row" style="width:400px"><?php _e( 'Page
|
271 |
|
272 |
<td><input type="text" name="wp_email_capture_signup" class="regular-text code" value="<?php echo get_option( 'wp_email_capture_signup' ); ?>" /></td>
|
273 |
|
@@ -275,7 +275,7 @@ function wp_email_capture_free_options() {
|
|
275 |
|
276 |
<tr valign="top">
|
277 |
|
278 |
-
<th scope="row" style="width:400px"><label for="wp_email_capture_redirection"><?php _e( 'Page
|
279 |
|
280 |
<td><input type="text" name="wp_email_capture_redirection" class="regular-text code" value="<?php echo get_option( 'wp_email_capture_redirection' ); ?>" /></td>
|
281 |
|
267 |
|
268 |
<tr valign="top">
|
269 |
|
270 |
+
<th scope="row" style="width:400px"><?php _e( 'Subscription Page URL (full web address ie: http://www.domain.com/this-page/)', 'wp-email-capture' ); ?></th>
|
271 |
|
272 |
<td><input type="text" name="wp_email_capture_signup" class="regular-text code" value="<?php echo get_option( 'wp_email_capture_signup' ); ?>" /></td>
|
273 |
|
275 |
|
276 |
<tr valign="top">
|
277 |
|
278 |
+
<th scope="row" style="width:400px"><label for="wp_email_capture_redirection"><?php _e( 'Confirmation Page URL (full web address ie: http://www.domain.com/this-other-page/)', 'wp-email-capture' ); ?></label></th>
|
279 |
|
280 |
<td><input type="text" name="wp_email_capture_redirection" class="regular-text code" value="<?php echo get_option( 'wp_email_capture_redirection' ); ?>" /></td>
|
281 |
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Tags: email marketing, email, mailing list, widget ready, gutenberg ready, gdpr
|
3 |
Requires at least: 5.0
|
4 |
Tested up to: 5.0
|
5 |
-
Version: 3.6.
|
6 |
-
Stable tag: 3.6.
|
7 |
Contributors: rhyswynne
|
8 |
Donate link: https://www.wpemailcapture.com/premium/?utm_source=donatelink&utm_medium=wordpressorgreadme&utm_campaign=wpemailcapture
|
9 |
|
@@ -157,6 +157,9 @@ This plugin does use widgets, so probably yes :)
|
|
157 |
Wherever you put in %NAME% (spelt exactly like that, uppercase as well), it will be replaced with the name given by the user.
|
158 |
|
159 |
== Change Log ==
|
|
|
|
|
|
|
160 |
= 3.6.3 =
|
161 |
* Some files didn't manage to upload. I've now pushed them live.
|
162 |
|
2 |
Tags: email marketing, email, mailing list, widget ready, gutenberg ready, gdpr
|
3 |
Requires at least: 5.0
|
4 |
Tested up to: 5.0
|
5 |
+
Version: 3.6.4
|
6 |
+
Stable tag: 3.6.4
|
7 |
Contributors: rhyswynne
|
8 |
Donate link: https://www.wpemailcapture.com/premium/?utm_source=donatelink&utm_medium=wordpressorgreadme&utm_campaign=wpemailcapture
|
9 |
|
157 |
Wherever you put in %NAME% (spelt exactly like that, uppercase as well), it will be replaced with the name given by the user.
|
158 |
|
159 |
== Change Log ==
|
160 |
+
= 3.6.4 =
|
161 |
+
* Clarified further a couple of options that people were having problems with.
|
162 |
+
|
163 |
= 3.6.3 =
|
164 |
* Some files didn't manage to upload. I've now pushed them live.
|
165 |
|
wp-email-capture.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: WP Email Capture
|
5 |
Plugin URI: https://www.wpemailcapture.com/?utm_source=plugin-link&utm_medium=plugin&utm_campaign=wpemailcapture
|
6 |
Description: Captures email addresses for insertion into software such as <a href="https://www.wpemailcapture.com/recommends/aweber" title="Email Marketing">Aweber</a> or <a href="https://www.wpemailcapture.com/recommends/mailchimp/">Mailchimp</a>
|
7 |
-
Version: 3.6.
|
8 |
Author: Winwar Media
|
9 |
Author URI: https://www.winwar.co.uk/?utm_source=author-link&utm_medium=plugin&utm_campaign=wpemailcapture
|
10 |
*/
|
@@ -19,7 +19,7 @@ define( 'WP_EMAIL_CAPTURE_PATH', dirname( __FILE__ ) );
|
|
19 |
define( 'WP_EMAIL_CAPTURE_URL', plugins_url( '', __FILE__ ) );
|
20 |
define( 'WP_EMAIL_CAPTURE_TEMP_MEMBERS_TABLE', $wpdb->prefix . 'wp_email_capture_temp_members' );
|
21 |
define( 'WP_EMAIL_CAPTURE_REGISTERED_MEMBERS_TABLE', $wpdb->prefix . 'wp_email_capture_registered_members' );
|
22 |
-
define( 'WP_EMAIL_CAPTURE_VERSION', '3.6.
|
23 |
define( 'WP_EMAIL_MIN_MYSQL_VERSION', '5.6' );
|
24 |
|
25 |
require_once WP_EMAIL_CAPTURE_PATH . '/inc/core.php';
|
4 |
Plugin Name: WP Email Capture
|
5 |
Plugin URI: https://www.wpemailcapture.com/?utm_source=plugin-link&utm_medium=plugin&utm_campaign=wpemailcapture
|
6 |
Description: Captures email addresses for insertion into software such as <a href="https://www.wpemailcapture.com/recommends/aweber" title="Email Marketing">Aweber</a> or <a href="https://www.wpemailcapture.com/recommends/mailchimp/">Mailchimp</a>
|
7 |
+
Version: 3.6.4
|
8 |
Author: Winwar Media
|
9 |
Author URI: https://www.winwar.co.uk/?utm_source=author-link&utm_medium=plugin&utm_campaign=wpemailcapture
|
10 |
*/
|
19 |
define( 'WP_EMAIL_CAPTURE_URL', plugins_url( '', __FILE__ ) );
|
20 |
define( 'WP_EMAIL_CAPTURE_TEMP_MEMBERS_TABLE', $wpdb->prefix . 'wp_email_capture_temp_members' );
|
21 |
define( 'WP_EMAIL_CAPTURE_REGISTERED_MEMBERS_TABLE', $wpdb->prefix . 'wp_email_capture_registered_members' );
|
22 |
+
define( 'WP_EMAIL_CAPTURE_VERSION', '3.6.4' );
|
23 |
define( 'WP_EMAIL_MIN_MYSQL_VERSION', '5.6' );
|
24 |
|
25 |
require_once WP_EMAIL_CAPTURE_PATH . '/inc/core.php';
|