Version Description
- Fix: PHP warning for number_format on Manage List screen
Download this release
Release Info
Developer | Icegram |
Plugin | Email Subscribers & Newsletters |
Version | 4.7.5.1 |
Comparing to | |
See all releases |
Code changes from version 4.7.5 to 4.7.5.1
- email-subscribers.php +2 -2
- lite/includes/classes/class-es-lists-table.php +8 -8
- readme.txt +9 -1
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: 4.7.5
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.9
|
@@ -178,7 +178,7 @@ if ( 'premium' === $ig_es_plan ) {
|
|
178 |
/* ***************************** Initial Compatibility Work (End) ******************* */
|
179 |
|
180 |
if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
|
181 |
-
define( 'ES_PLUGIN_VERSION', '4.7.5' );
|
182 |
}
|
183 |
|
184 |
// Plugin Folder Path.
|
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: 4.7.5.1
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.9
|
178 |
/* ***************************** Initial Compatibility Work (End) ******************* */
|
179 |
|
180 |
if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
|
181 |
+
define( 'ES_PLUGIN_VERSION', '4.7.5.1' );
|
182 |
}
|
183 |
|
184 |
// Plugin Folder Path.
|
lite/includes/classes/class-es-lists-table.php
CHANGED
@@ -455,10 +455,10 @@ class ES_Lists_Table extends ES_List_Table {
|
|
455 |
if ( $count > 0 ) {
|
456 |
$url = admin_url( 'admin.php?page=es_subscribers&filter_by_status=subscribed&filter_by_list_id=' . $item['id'] );
|
457 |
/* translators: 1: Subscribed-Filter url 2: Count */
|
458 |
-
$count =
|
459 |
}
|
460 |
|
461 |
-
return
|
462 |
break;
|
463 |
|
464 |
case 'unsubscribed':
|
@@ -466,10 +466,10 @@ class ES_Lists_Table extends ES_List_Table {
|
|
466 |
if ( $count > 0 ) {
|
467 |
$url = admin_url( 'admin.php?page=es_subscribers&filter_by_status=unsubscribed&filter_by_list_id=' . $item['id'] );
|
468 |
/* translators: 1: Unsubscribed-Filter url 2: Count */
|
469 |
-
$count =
|
470 |
}
|
471 |
|
472 |
-
return
|
473 |
break;
|
474 |
|
475 |
case 'unconfirmed':
|
@@ -477,10 +477,10 @@ class ES_Lists_Table extends ES_List_Table {
|
|
477 |
if ( $count > 0 ) {
|
478 |
$url = admin_url( 'admin.php?page=es_subscribers&filter_by_status=unconfirmed&filter_by_list_id=' . $item['id'] );
|
479 |
/* translators: 1: Unconfirmed-Filter url 2: Count */
|
480 |
-
$count =
|
481 |
}
|
482 |
|
483 |
-
return
|
484 |
break;
|
485 |
|
486 |
case 'all_contacts':
|
@@ -488,10 +488,10 @@ class ES_Lists_Table extends ES_List_Table {
|
|
488 |
if ( $count > 0 ) {
|
489 |
$url = admin_url( 'admin.php?page=es_subscribers&filter_by_list_id=' . $item['id'] );
|
490 |
/* translators: 1: All contacts flters 2: Count */
|
491 |
-
$count =
|
492 |
}
|
493 |
|
494 |
-
return
|
495 |
break;
|
496 |
|
497 |
case 'created_at':
|
455 |
if ( $count > 0 ) {
|
456 |
$url = admin_url( 'admin.php?page=es_subscribers&filter_by_status=subscribed&filter_by_list_id=' . $item['id'] );
|
457 |
/* translators: 1: Subscribed-Filter url 2: Count */
|
458 |
+
$count = '<a href="' . $url . '" target="_blank">' . number_format( $count ) . '</a>';
|
459 |
}
|
460 |
|
461 |
+
return $count;
|
462 |
break;
|
463 |
|
464 |
case 'unsubscribed':
|
466 |
if ( $count > 0 ) {
|
467 |
$url = admin_url( 'admin.php?page=es_subscribers&filter_by_status=unsubscribed&filter_by_list_id=' . $item['id'] );
|
468 |
/* translators: 1: Unsubscribed-Filter url 2: Count */
|
469 |
+
$count = '<a href="' . $url . '" target="_blank">' . number_format( $count ) . '</a>';
|
470 |
}
|
471 |
|
472 |
+
return $count;
|
473 |
break;
|
474 |
|
475 |
case 'unconfirmed':
|
477 |
if ( $count > 0 ) {
|
478 |
$url = admin_url( 'admin.php?page=es_subscribers&filter_by_status=unconfirmed&filter_by_list_id=' . $item['id'] );
|
479 |
/* translators: 1: Unconfirmed-Filter url 2: Count */
|
480 |
+
$count = '<a href="' . $url . '" target="_blank">' . number_format( $count ) . '</a>';
|
481 |
}
|
482 |
|
483 |
+
return $count;
|
484 |
break;
|
485 |
|
486 |
case 'all_contacts':
|
488 |
if ( $count > 0 ) {
|
489 |
$url = admin_url( 'admin.php?page=es_subscribers&filter_by_list_id=' . $item['id'] );
|
490 |
/* translators: 1: All contacts flters 2: Count */
|
491 |
+
$count = '<a href="' . $url . '" target="_blank">' . number_format( $count ) . '</a>';
|
492 |
}
|
493 |
|
494 |
+
return $count;
|
495 |
break;
|
496 |
|
497 |
case 'created_at':
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: email marketing, subscription, autoresponder, post notification, welcome e
|
|
6 |
Requires at least: 3.9
|
7 |
Tested up to: 5.7.2
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 4.7.5
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses
|
12 |
|
@@ -310,6 +310,10 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
|
|
310 |
|
311 |
== Upgrade Notice ==
|
312 |
|
|
|
|
|
|
|
|
|
313 |
= 4.7.5 =
|
314 |
|
315 |
* New: Import subscribers from WooCommerce orders **[PRO]**
|
@@ -320,6 +324,10 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
|
|
320 |
|
321 |
== Changelog ==
|
322 |
|
|
|
|
|
|
|
|
|
323 |
**4.7.5 (16.06.2021)**
|
324 |
|
325 |
* New: Import subscribers from WooCommerce orders **[PRO]**
|
6 |
Requires at least: 3.9
|
7 |
Tested up to: 5.7.2
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 4.7.5.1
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses
|
12 |
|
310 |
|
311 |
== Upgrade Notice ==
|
312 |
|
313 |
+
= 4.7.5.1 =
|
314 |
+
|
315 |
+
* Fix: PHP warning for number_format on Manage List screen
|
316 |
+
|
317 |
= 4.7.5 =
|
318 |
|
319 |
* New: Import subscribers from WooCommerce orders **[PRO]**
|
324 |
|
325 |
== Changelog ==
|
326 |
|
327 |
+
**4.7.5.1 (16.06.2021)**
|
328 |
+
|
329 |
+
* Fix: PHP warning for number_format on Manage List screen
|
330 |
+
|
331 |
**4.7.5 (16.06.2021)**
|
332 |
|
333 |
* New: Import subscribers from WooCommerce orders **[PRO]**
|