Version Description
(18.10.2017) =
- Fix: Fatal error: Cant use function return value in write context
Download this release
Release Info
Developer | storeapps |
Plugin | Email Subscribers & Newsletters |
Version | 3.4.1 |
Comparing to | |
See all releases |
Code changes from version 3.4.0 to 3.4.1
- changelog.txt +4 -0
- classes/es-register.php +2 -1
- email-subscribers.php +1 -1
- query/db_compose.php +2 -1
- readme.txt +10 -2
changelog.txt
CHANGED
@@ -4,6 +4,10 @@ Author : Icegram
|
|
4 |
Author URI : https://www.icegram.com/
|
5 |
License : GPLv3
|
6 |
|
|
|
|
|
|
|
|
|
7 |
************************************************************Version 3.4.0************************************************************
|
8 |
|
9 |
* New: Old keyword structure ###KEYWORD### converted to {{KEYWORD}}
|
4 |
Author URI : https://www.icegram.com/
|
5 |
License : GPLv3
|
6 |
|
7 |
+
************************************************************Version 3.4.1************************************************************
|
8 |
+
|
9 |
+
* Fix: Fatal error: Can’t use function return value in write context
|
10 |
+
|
11 |
************************************************************Version 3.4.0************************************************************
|
12 |
|
13 |
* New: Old keyword structure ###KEYWORD### converted to {{KEYWORD}}
|
classes/es-register.php
CHANGED
@@ -1238,7 +1238,8 @@ class es_cls_registerhook {
|
|
1238 |
public static function es_template_edit_columns($column) {
|
1239 |
global $post;
|
1240 |
|
1241 |
-
$
|
|
|
1242 |
|
1243 |
switch ($column) {
|
1244 |
case 'es_templ_type':
|
1238 |
public static function es_template_edit_columns($column) {
|
1239 |
global $post;
|
1240 |
|
1241 |
+
$es_post_thumbnail = get_the_post_thumbnail( $post->ID );
|
1242 |
+
$es_templ_thumbnail = ( !empty( $es_post_thumbnail ) ) ? get_the_post_thumbnail($post->ID, array('200','200') ) : '<img src="'.ES_URL.'images/es-custom-template.png" />';
|
1243 |
|
1244 |
switch ($column) {
|
1245 |
case 'es_templ_type':
|
email-subscribers.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Email Subscribers & Newsletters
|
4 |
* Plugin URI: https://www.icegram.com/
|
5 |
* Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
|
6 |
-
* Version: 3.4.
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.4
|
3 |
* Plugin Name: Email Subscribers & Newsletters
|
4 |
* Plugin URI: https://www.icegram.com/
|
5 |
* Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
|
6 |
+
* Version: 3.4.1
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.4
|
query/db_compose.php
CHANGED
@@ -61,7 +61,8 @@ class es_cls_compose {
|
|
61 |
)
|
62 |
));
|
63 |
foreach ($es_template as $id) {
|
64 |
-
|
|
|
65 |
$tmpl = array(
|
66 |
'es_templ_id' => $id,
|
67 |
'es_templ_heading' => get_the_title($id),
|
61 |
)
|
62 |
));
|
63 |
foreach ($es_template as $id) {
|
64 |
+
$es_post_thumbnail = get_the_post_thumbnail( $id );
|
65 |
+
$es_templ_thumbnail = ( !empty( $es_post_thumbnail ) ) ? get_the_post_thumbnail( $id, array('200','200') ) : '<img src="'.ES_URL.'images/es-custom-template.png" />';
|
66 |
$tmpl = array(
|
67 |
'es_templ_id' => $id,
|
68 |
'es_templ_heading' => get_the_title($id),
|
readme.txt
CHANGED
@@ -5,9 +5,9 @@ Author URI: https://www.icegram.com/
|
|
5 |
Tags: email marketing, email newsletter form, email signup, email widget, newsletter, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation
|
6 |
Requires at least: 3.4
|
7 |
Tested up to: 4.8.2
|
8 |
-
Stable tag: 3.4.
|
9 |
License: GPLv3
|
10 |
-
License URI: http://www.gnu.org/licenses
|
11 |
|
12 |
Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it gets published.
|
13 |
|
@@ -311,6 +311,10 @@ Use our free plugin [Email Subscribers - Group Selector](https://wordpress.org/p
|
|
311 |
|
312 |
== Changelog ==
|
313 |
|
|
|
|
|
|
|
|
|
314 |
= 3.4.0 (17.10.2017) =
|
315 |
|
316 |
* New: Old keyword structure ###KEYWORD### converted to {{KEYWORD}}
|
@@ -655,6 +659,10 @@ For the changelog of earlier versions, please refer to the separate [changelog.t
|
|
655 |
|
656 |
== Upgrade Notice ==
|
657 |
|
|
|
|
|
|
|
|
|
658 |
= 3.4.0 (17.10.2017) =
|
659 |
|
660 |
* New: Old keyword structure ###KEYWORD### converted to {{KEYWORD}}
|
5 |
Tags: email marketing, email newsletter form, email signup, email widget, newsletter, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation
|
6 |
Requires at least: 3.4
|
7 |
Tested up to: 4.8.2
|
8 |
+
Stable tag: 3.4.1
|
9 |
License: GPLv3
|
10 |
+
License URI: http://www.gnu.org/licenses
|
11 |
|
12 |
Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it gets published.
|
13 |
|
311 |
|
312 |
== Changelog ==
|
313 |
|
314 |
+
= 3.4.1 (18.10.2017) =
|
315 |
+
|
316 |
+
* Fix: Fatal error: Can’t use function return value in write context
|
317 |
+
|
318 |
= 3.4.0 (17.10.2017) =
|
319 |
|
320 |
* New: Old keyword structure ###KEYWORD### converted to {{KEYWORD}}
|
659 |
|
660 |
== Upgrade Notice ==
|
661 |
|
662 |
+
= 3.4.1 (18.10.2017) =
|
663 |
+
|
664 |
+
* Fix: Fatal error: Can’t use function return
|
665 |
+
|
666 |
= 3.4.0 (17.10.2017) =
|
667 |
|
668 |
* New: Old keyword structure ###KEYWORD### converted to {{KEYWORD}}
|