Version Description
- [COMPOSER] Fixed image block for Outlook
- [GENERAL] Fix undefined values in Gutenberg block
Download this release
Release Info
Developer | satollo |
Plugin | Newsletter |
Version | 7.1.4 |
Comparing to | |
See all releases |
Code changes from version 7.1.3 to 7.1.4
- includes/composer.php +1 -1
- includes/tnp-blocks.js +2 -2
- plugin.php +2 -2
- readme.txt +6 -2
includes/composer.php
CHANGED
@@ -383,7 +383,7 @@ class TNP_Composer {
|
|
383 |
|
384 |
if ($media) {
|
385 |
$b .= '<img src="' . esc_attr($media->url) . '" width="' . esc_attr($media->width) . '"'
|
386 |
-
. ' height="' . esc_attr($media->
|
387 |
. ' alt="' . esc_attr($media->alt) . '"'
|
388 |
. ' border="0" '
|
389 |
. $styling
|
383 |
|
384 |
if ($media) {
|
385 |
$b .= '<img src="' . esc_attr($media->url) . '" width="' . esc_attr($media->width) . '"'
|
386 |
+
. ' height="' . esc_attr($media->height) . '"'
|
387 |
. ' alt="' . esc_attr($media->alt) . '"'
|
388 |
. ' border="0" '
|
389 |
. $styling
|
includes/tnp-blocks.js
CHANGED
@@ -213,13 +213,13 @@
|
|
213 |
}
|
214 |
|
215 |
lists_attr = "";
|
216 |
-
if (props.attributes.list_ids
|
217 |
lists_attr = " lists=\"" + props.attributes.list_ids + "\"";
|
218 |
}
|
219 |
|
220 |
button_color_attr = "";
|
221 |
button_color = buttonClass ? undefined : props.attributes.customButtonColor;
|
222 |
-
if (button_color
|
223 |
button_color_attr = " button_color=\"" + button_color + "\"";
|
224 |
}
|
225 |
|
213 |
}
|
214 |
|
215 |
lists_attr = "";
|
216 |
+
if (props.attributes.list_ids) {
|
217 |
lists_attr = " lists=\"" + props.attributes.list_ids + "\"";
|
218 |
}
|
219 |
|
220 |
button_color_attr = "";
|
221 |
button_color = buttonClass ? undefined : props.attributes.customButtonColor;
|
222 |
+
if (button_color) {
|
223 |
button_color_attr = " button_color=\"" + button_color + "\"";
|
224 |
}
|
225 |
|
plugin.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Newsletter
|
5 |
Plugin URI: https://www.thenewsletterplugin.com/plugins/newsletter
|
6 |
Description: Newsletter is a cool plugin to create your own subscriber list, to send newsletters, to build your business. <strong>Before update give a look to <a href="https://www.thenewsletterplugin.com/category/release">this page</a> to know what's changed.</strong>
|
7 |
-
Version: 7.1.
|
8 |
Author: Stefano Lissa & The Newsletter Team
|
9 |
Author URI: https://www.thenewsletterplugin.com
|
10 |
Disclaimer: Use at your own risk. No warranty expressed or implied is provided.
|
@@ -35,7 +35,7 @@ if (version_compare(phpversion(), '5.6', '<')) {
|
|
35 |
return;
|
36 |
}
|
37 |
|
38 |
-
define('NEWSLETTER_VERSION', '7.1.
|
39 |
|
40 |
global $newsletter, $wpdb;
|
41 |
|
4 |
Plugin Name: Newsletter
|
5 |
Plugin URI: https://www.thenewsletterplugin.com/plugins/newsletter
|
6 |
Description: Newsletter is a cool plugin to create your own subscriber list, to send newsletters, to build your business. <strong>Before update give a look to <a href="https://www.thenewsletterplugin.com/category/release">this page</a> to know what's changed.</strong>
|
7 |
+
Version: 7.1.4
|
8 |
Author: Stefano Lissa & The Newsletter Team
|
9 |
Author URI: https://www.thenewsletterplugin.com
|
10 |
Disclaimer: Use at your own risk. No warranty expressed or implied is provided.
|
35 |
return;
|
36 |
}
|
37 |
|
38 |
+
define('NEWSLETTER_VERSION', '7.1.4');
|
39 |
|
40 |
global $newsletter, $wpdb;
|
41 |
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Tags: email, email marketing, newsletter, newsletter subscribers, welcome email, signup forms, contact, lead generation, popup, marketing automation
|
3 |
Requires at least: 3.4.0
|
4 |
Tested up to: 5.7.1
|
5 |
-
Stable tag: 7.1.
|
6 |
Requires PHP: 5.6
|
7 |
Contributors: satollo,webagile,michael-travan
|
8 |
License: GPLv2 or later
|
@@ -121,6 +121,11 @@ Thank you, The Newsletter Team
|
|
121 |
|
122 |
== Changelog ==
|
123 |
|
|
|
|
|
|
|
|
|
|
|
124 |
= 7.1.3 =
|
125 |
|
126 |
* [COMPOSER] Improvements on blocks layout compatibility
|
@@ -129,7 +134,6 @@ Thank you, The Newsletter Team
|
|
129 |
* [GENERAL] Added to System menu the Site Health link, a not well known native page of WordPress with system information
|
130 |
* [GENERAL] Added sending statistics reset button on status panel
|
131 |
|
132 |
-
|
133 |
= 7.1.2 =
|
134 |
|
135 |
* [ADDONS] Fixed the addons list
|
2 |
Tags: email, email marketing, newsletter, newsletter subscribers, welcome email, signup forms, contact, lead generation, popup, marketing automation
|
3 |
Requires at least: 3.4.0
|
4 |
Tested up to: 5.7.1
|
5 |
+
Stable tag: 7.1.4
|
6 |
Requires PHP: 5.6
|
7 |
Contributors: satollo,webagile,michael-travan
|
8 |
License: GPLv2 or later
|
121 |
|
122 |
== Changelog ==
|
123 |
|
124 |
+
= 7.1.4 =
|
125 |
+
|
126 |
+
* [COMPOSER] Fixed image block for Outlook
|
127 |
+
* [GENERAL] Fix undefined values in Gutenberg block
|
128 |
+
|
129 |
= 7.1.3 =
|
130 |
|
131 |
* [COMPOSER] Improvements on blocks layout compatibility
|
134 |
* [GENERAL] Added to System menu the Site Health link, a not well known native page of WordPress with system information
|
135 |
* [GENERAL] Added sending statistics reset button on status panel
|
136 |
|
|
|
137 |
= 7.1.2 =
|
138 |
|
139 |
* [ADDONS] Fixed the addons list
|