Version Description
- Fix - Form edit redirect not working
Download this release
Release Info
Developer | mailerlite |
Plugin | Official MailerLite Sign Up Forms |
Version | 1.3.3 |
Comparing to | |
See all releases |
Code changes from version 1.3.2 to 1.3.3
- include/mailerlite-shortcode.php +1 -0
- mailerlite.php +2 -2
- readme.txt +4 -1
include/mailerlite-shortcode.php
CHANGED
@@ -120,6 +120,7 @@ class MailerLite_Shortcode {
|
|
120 |
} elseif ( $form->type == MailerLite_Form::TYPE_EMBEDDED ) {
|
121 |
$form_data = unserialize( $form->data );
|
122 |
wp_redirect( 'https://app.mailerlite.com/webforms/new/content/' . ( $form_data['id'] ) );
|
|
|
123 |
}
|
124 |
} else {
|
125 |
echo 'Form not found.';
|
120 |
} elseif ( $form->type == MailerLite_Form::TYPE_EMBEDDED ) {
|
121 |
$form_data = unserialize( $form->data );
|
122 |
wp_redirect( 'https://app.mailerlite.com/webforms/new/content/' . ( $form_data['id'] ) );
|
123 |
+
exit;
|
124 |
}
|
125 |
} else {
|
126 |
echo 'Form not found.';
|
mailerlite.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/**
|
4 |
* Plugin Name: Official MailerLite Sign Up Forms
|
5 |
* Description: Official MailerLite Sign Up Forms plugin for WordPress. Ability to embed MailerLite webforms and create custom ones just with few clicks.
|
6 |
-
* Version: 1.3.
|
7 |
* Author: MailerGroup
|
8 |
* Author URI: https://www.mailerlite.com
|
9 |
* License: GPLv2 or later
|
@@ -29,7 +29,7 @@
|
|
29 |
define( 'MAILERLITE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
30 |
define( 'MAILERLITE_PLUGIN_URL', plugins_url( '', __FILE__ ) );
|
31 |
|
32 |
-
define( 'MAILERLITE_VERSION', '1.3.
|
33 |
|
34 |
define( 'MAILERLITE_PHP_VERSION', '5.6.0' );
|
35 |
define( 'MAILERLITE_WP_VERSION', '3.0.1' );
|
3 |
/**
|
4 |
* Plugin Name: Official MailerLite Sign Up Forms
|
5 |
* Description: Official MailerLite Sign Up Forms plugin for WordPress. Ability to embed MailerLite webforms and create custom ones just with few clicks.
|
6 |
+
* Version: 1.3.3
|
7 |
* Author: MailerGroup
|
8 |
* Author URI: https://www.mailerlite.com
|
9 |
* License: GPLv2 or later
|
29 |
define( 'MAILERLITE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
30 |
define( 'MAILERLITE_PLUGIN_URL', plugins_url( '', __FILE__ ) );
|
31 |
|
32 |
+
define( 'MAILERLITE_VERSION', '1.3.3' );
|
33 |
|
34 |
define( 'MAILERLITE_PHP_VERSION', '5.6.0' );
|
35 |
define( 'MAILERLITE_WP_VERSION', '3.0.1' );
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: mailerlite, newsletter, subscribe, form, webform
|
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 5.0.2
|
7 |
Requires PHP: 5.6.0
|
8 |
-
Stable tag: 1.3.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -130,6 +130,9 @@ Add your custom CSS rules to the end of your theme stylesheet, /wp-content/theme
|
|
130 |
|
131 |
== Changelog ==
|
132 |
|
|
|
|
|
|
|
133 |
= 1.3.2 =
|
134 |
* Fix - Form block js file version bump
|
135 |
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 5.0.2
|
7 |
Requires PHP: 5.6.0
|
8 |
+
Stable tag: 1.3.3
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
130 |
|
131 |
== Changelog ==
|
132 |
|
133 |
+
= 1.3.3 =
|
134 |
+
* Fix - Form edit redirect not working
|
135 |
+
|
136 |
= 1.3.2 =
|
137 |
* Fix - Form block js file version bump
|
138 |
|