Email Subscribers & Newsletters - Version 5.4.10

Version Description

  • Enhancement: Added option to disable subscription API
  • Fix: Duplicate campaign scheduling issue[PRO]

=

Download this release

Release Info

Developer Icegram
Plugin Icon 128x128 Email Subscribers & Newsletters
Version 5.4.10
Comparing to
See all releases

Code changes from version 5.4.9 to 5.4.10

email-subscribers.php CHANGED
@@ -3,11 +3,11 @@
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: 5.4.9
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
10
- * Tested up to: 6.0.1
11
  * WC requires at least: 3.6.0
12
  * WC tested up to: 5.5.1
13
  * ES Woo: 7120515:9f4c7f8bb491260ef19edf9699db73e6
@@ -187,7 +187,7 @@ if ( 'premium' === $ig_es_plan ) {
187
  /* ***************************** Initial Compatibility Work (End) ******************* */
188
 
189
  if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
190
- define( 'ES_PLUGIN_VERSION', '5.4.9' );
191
  }
192
 
193
  // 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: 5.4.10
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
10
+ * Tested up to: 6.0.2
11
  * WC requires at least: 3.6.0
12
  * WC tested up to: 5.5.1
13
  * ES Woo: 7120515:9f4c7f8bb491260ef19edf9699db73e6
187
  /* ***************************** Initial Compatibility Work (End) ******************* */
188
 
189
  if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
190
+ define( 'ES_PLUGIN_VERSION', '5.4.10' );
191
  }
192
 
193
  // Plugin Folder Path.
lite/admin/class-es-campaign-admin.php CHANGED
@@ -795,7 +795,6 @@ if ( ! class_exists( 'ES_Campaign_Admin' ) ) {
795
  $queue_start_at = $mailing_queue['start_at'];
796
  $current_timestamp = time();
797
  $sending_timestamp = strtotime( $queue_start_at );
798
-
799
  // Check if campaign sending time has come.
800
  if ( ! empty( $sending_timestamp ) && $sending_timestamp <= $current_timestamp ) {
801
  $request_args = array(
795
  $queue_start_at = $mailing_queue['start_at'];
796
  $current_timestamp = time();
797
  $sending_timestamp = strtotime( $queue_start_at );
 
798
  // Check if campaign sending time has come.
799
  if ( ! empty( $sending_timestamp ) && $sending_timestamp <= $current_timestamp ) {
800
  $request_args = array(
lite/includes/class-es-common.php CHANGED
@@ -1832,24 +1832,27 @@ class ES_Common {
1832
 
1833
  if ( $upsell ) {
1834
 
1835
- $articles_upsell = array(
1836
- array(
 
 
 
 
 
 
 
 
 
1837
  'title' => __( 'Email Subscribers PRO', 'email-subscribers' ),
1838
- 'link' => 'https://www.icegram.com/er6r',
1839
- 'label' => __( 'Lifetime', 'email-subscribers' ),
1840
- 'label_class' => 'bg-green-100 text-green-800',
1841
- ),
1842
- array(
1843
- 'title' => __( '<b>Email Subscribers Secret Club</b>', 'email-subscribers' ),
1844
- 'link' => 'https://www.facebook.com/groups/2298909487017349/',
1845
- 'label' => __( 'Join Now', 'email-subscribers' ),
1846
  'label_class' => 'bg-green-100 text-green-800',
1847
- ),
1848
- );
1849
  }
1850
 
1851
  $articles = array_merge( $blog_articles, $articles_upsell );
1852
-
1853
  return $articles;
1854
  }
1855
 
1832
 
1833
  if ( $upsell ) {
1834
 
1835
+ $pricing_page_url = admin_url( 'admin.php?page=es_pricing' );
1836
+
1837
+ $articles_upsell[] = array(
1838
+ 'title' => __( '<b>Email Subscribers Secret Club</b>', 'email-subscribers' ),
1839
+ 'link' => 'https://www.facebook.com/groups/2298909487017349/',
1840
+ 'label' => __( 'Join Now', 'email-subscribers' ),
1841
+ 'label_class' => 'bg-green-100 text-green-800',
1842
+ );
1843
+
1844
+ if ( ! ES()->is_premium() ) {
1845
+ $articles_upsell[] = array(
1846
  'title' => __( 'Email Subscribers PRO', 'email-subscribers' ),
1847
+ 'link' => $pricing_page_url,
1848
+ 'label' => __( 'PRO', 'email-subscribers' ),
 
 
 
 
 
 
1849
  'label_class' => 'bg-green-100 text-green-800',
1850
+ );
1851
+ }
1852
  }
1853
 
1854
  $articles = array_merge( $blog_articles, $articles_upsell );
1855
+
1856
  return $articles;
1857
  }
1858
 
lite/includes/classes/class-es-handle-post-notification.php CHANGED
@@ -93,9 +93,9 @@ class ES_Handle_Post_Notification {
93
 
94
  $old_post = $post_date_timestamp < $last_year_date_timestamp;
95
 
96
- $old_post_notification_disabled = apply_filters( 'ig_es_post_notification_for_old_post', true );
97
 
98
- if ( $$old_post && $old_post_notification_disabled ) {
99
  // don't send post notification to old post
100
  return;
101
  }
93
 
94
  $old_post = $post_date_timestamp < $last_year_date_timestamp;
95
 
96
+ $old_post_notification_disabled = apply_filters( 'ig_es_disable_old_post_notification', true );
97
 
98
+ if ( $old_post && $old_post_notification_disabled ) {
99
  // don't send post notification to old post
100
  return;
101
  }
lite/includes/db/class-es-db-campaigns.php CHANGED
@@ -736,6 +736,8 @@ class ES_DB_Campaigns extends ES_DB {
736
  * @param $id
737
  *
738
  * @since 4.6.3
 
 
739
  */
740
  public function duplicate_campaign( $id = null ) {
741
 
@@ -752,6 +754,10 @@ class ES_DB_Campaigns extends ES_DB {
752
  unset( $campaign['id'] );
753
  unset( $campaign['created_at'] );
754
 
 
 
 
 
755
  $duplicate_campaign_id = $this->save_campaign( $campaign );
756
 
757
  if ( 'sequence' === $campaign['type'] ) {
736
  * @param $id
737
  *
738
  * @since 4.6.3
739
+ *
740
+ * @modify 5.4.9
741
  */
742
  public function duplicate_campaign( $id = null ) {
743
 
754
  unset( $campaign['id'] );
755
  unset( $campaign['created_at'] );
756
 
757
+ $campaign_meta = maybe_unserialize( $campaign['meta'] );
758
+ unset( $campaign_meta['date'], $campaign_meta['es_schedule_date'], $campaign_meta['es_schedule_time'] );
759
+ $campaign['meta'] = maybe_serialize( $campaign_meta );
760
+
761
  $duplicate_campaign_id = $this->save_campaign( $campaign );
762
 
763
  if ( 'sequence' === $campaign['type'] ) {
lite/includes/pro-features.php CHANGED
@@ -1239,6 +1239,10 @@ function ig_es_upsale_campaign_tracking_options( $campaign_data ) {
1239
  function ig_es_upsell_send_test_email_feature( $type, $test_email ) {
1240
 
1241
  if ( ES()->can_upsell_features( array( 'lite', 'starter', 'trial' ) ) ) {
 
 
 
 
1242
  $pricing_url = ES_Common::get_utm_tracking_url( $utm_args );
1243
  ?>
1244
  <div>
1239
  function ig_es_upsell_send_test_email_feature( $type, $test_email ) {
1240
 
1241
  if ( ES()->can_upsell_features( array( 'lite', 'starter', 'trial' ) ) ) {
1242
+ $utm_args = array(
1243
+ 'utm_medium' => 'send_campaign_preview_email',
1244
+ );
1245
+
1246
  $pricing_url = ES_Common::get_utm_tracking_url( $utm_args );
1247
  ?>
1248
  <div>
lite/language.php CHANGED
@@ -411,7 +411,7 @@ __( 'Balance Email Marketing and Social Media Marketing', 'email-subscribers' ),
411
  __( 'Use social proof to grow blog traffic through email', 'email-subscribers' ),
412
  __( '5 Simple Tricks to Improve Email Marketing Campaign Results', 'email-subscribers' ),
413
  __( 'Email Subscribers PRO', 'email-subscribers' ),
414
- __( 'Lifetime', 'email-subscribers' ),
415
  __( '<b>Email Subscribers Secret Club</b>', 'email-subscribers' ),
416
  __( 'Join Now', 'email-subscribers' ),
417
  __( 'All Types', 'email-subscribers' ),
411
  __( 'Use social proof to grow blog traffic through email', 'email-subscribers' ),
412
  __( '5 Simple Tricks to Improve Email Marketing Campaign Results', 'email-subscribers' ),
413
  __( 'Email Subscribers PRO', 'email-subscribers' ),
414
+ __( 'PRO', 'email-subscribers' ),
415
  __( '<b>Email Subscribers Secret Club</b>', 'email-subscribers' ),
416
  __( 'Join Now', 'email-subscribers' ),
417
  __( 'All Types', 'email-subscribers' ),
lite/languages/email-subscribers.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Email Subscribers & Newsletters plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Email Subscribers & Newsletters 5.4.9\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/email-subscribers\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2022-08-25T08:21:17+02:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.4.0\n"
15
  "X-Domain: email-subscribers\n"
@@ -561,9 +561,9 @@ msgstr ""
561
  msgid "Something went wrong. Please try again later."
562
  msgstr ""
563
 
564
- #: lite/admin/class-es-campaign-admin.php:1197
565
- #: lite/admin/class-es-campaign-admin.php:1217
566
- #: lite/admin/class-es-campaign-admin.php:1226
567
  #: lite/includes/classes/class-es-templates-table.php:56
568
  #: lite/includes/classes/class-es-templates-table.php:67
569
  #: lite/includes/classes/class-es-templates-table.php:73
@@ -571,23 +571,23 @@ msgstr ""
571
  msgid "Available Keywords"
572
  msgstr ""
573
 
574
- #: lite/admin/class-es-campaign-admin.php:1217
575
  #: lite/includes/classes/class-es-templates-table.php:73
576
  msgid "for Broadcast:"
577
  msgstr ""
578
 
579
- #: lite/admin/class-es-campaign-admin.php:1226
580
  #: lite/includes/classes/class-es-templates-table.php:78
581
  msgid "for Post Digest:"
582
  msgstr ""
583
 
584
- #: lite/admin/class-es-campaign-admin.php:1230
585
  #: lite/includes/classes/class-es-templates-table.php:79
586
  msgid "Any keywords related Post Notification"
587
  msgstr ""
588
 
589
  #. translators: %s: link to new keyword doc
590
- #: lite/admin/class-es-campaign-admin.php:1319
591
  msgid "%1$s[Update]%2$s: Improved keyword structure. Made it easy to use in campaign. Checkout %3$shere%4$s."
592
  msgstr ""
593
 
@@ -1358,8 +1358,8 @@ msgstr ""
1358
 
1359
  #: lite/admin/partials/help.php:239
1360
  #: lite/includes/class-es-common.php:581
1361
- #: lite/includes/class-es-common.php:2055
1362
- #: lite/includes/class-es-common.php:2506
1363
  #: lite/includes/classes/class-es-campaign-report.php:172
1364
  #: lite/includes/classes/class-es-campaigns-table.php:309
1365
  #: lite/includes/workflows/admin/views/meta-box-save.php:28
@@ -1370,7 +1370,7 @@ msgstr ""
1370
 
1371
  #: lite/admin/partials/help.php:241
1372
  #: lite/includes/class-es-common.php:582
1373
- #: lite/includes/class-es-common.php:2511
1374
  #: lite/includes/classes/class-es-campaign-report.php:177
1375
  #: lite/includes/workflows/admin/views/meta-box-save.php:27
1376
  #: pro/classes/class-es-pro-reports-data.php:198
@@ -1820,35 +1820,35 @@ msgstr ""
1820
  msgid "5 Simple Tricks to Improve Email Marketing Campaign Results"
1821
  msgstr ""
1822
 
1823
- #: lite/includes/class-es-common.php:1837
1824
  #: lite/includes/pro-features.php:195
1825
  msgid "Email Subscribers PRO"
1826
  msgstr ""
1827
 
1828
- #: lite/includes/class-es-common.php:1839
1829
- msgid "Lifetime"
1830
  msgstr ""
1831
 
1832
- #: lite/includes/class-es-common.php:1843
1833
  msgid "<b>Email Subscribers Secret Club</b>"
1834
  msgstr ""
1835
 
1836
- #: lite/includes/class-es-common.php:1845
1837
  #: lite/includes/feedback.php:123
1838
  msgid "Join Now"
1839
  msgstr ""
1840
 
1841
- #: lite/includes/class-es-common.php:2023
1842
  msgid "All Types"
1843
  msgstr ""
1844
 
1845
- #: lite/includes/class-es-common.php:2051
1846
  #: lite/includes/classes/class-es-campaigns-table.php:569
1847
  msgid "Draft"
1848
  msgstr ""
1849
 
1850
- #: lite/includes/class-es-common.php:2052
1851
- #: lite/includes/class-es-common.php:2497
1852
  #: lite/includes/classes/class-es-campaign-report.php:165
1853
  #: lite/includes/classes/class-es-campaign-report.php:484
1854
  #: lite/includes/classes/class-es-campaigns-table.php:550
@@ -1859,7 +1859,7 @@ msgstr ""
1859
  msgid "Sending"
1860
  msgstr ""
1861
 
1862
- #: lite/includes/class-es-common.php:2053
1863
  #: lite/includes/classes/class-es-campaigns-table.php:310
1864
  #: lite/includes/classes/class-es-campaigns-table.php:543
1865
  #: lite/includes/classes/class-es-campaigns-table.php:579
@@ -1868,8 +1868,8 @@ msgstr ""
1868
  msgid "Scheduled"
1869
  msgstr ""
1870
 
1871
- #: lite/includes/class-es-common.php:2054
1872
- #: lite/includes/class-es-common.php:2477
1873
  #: lite/includes/classes/class-es-campaign-report.php:149
1874
  #: lite/includes/classes/class-es-campaign-report.php:249
1875
  #: lite/includes/classes/class-es-campaign-report.php:468
@@ -1883,23 +1883,23 @@ msgstr ""
1883
  msgid "Sent"
1884
  msgstr ""
1885
 
1886
- #: lite/includes/class-es-common.php:2079
1887
  #: lite/includes/classes/class-es-campaigns-table.php:691
1888
  #: lite/includes/classes/class-es-contacts-table.php:1186
1889
  msgid "All Statuses"
1890
  msgstr ""
1891
 
1892
- #: lite/includes/class-es-common.php:2291
1893
  msgid "Upgrade"
1894
  msgstr ""
1895
 
1896
- #: lite/includes/class-es-common.php:2327
1897
  #: lite/includes/classes/class-es-reports-table.php:636
1898
  #: pro/classes/class-es-pro-reports-data.php:878
1899
  msgid "All Status"
1900
  msgstr ""
1901
 
1902
- #: lite/includes/class-es-common.php:2487
1903
  #: lite/includes/classes/class-es-campaign-report.php:157
1904
  #: lite/includes/classes/class-es-campaign-report.php:476
1905
  #: lite/includes/classes/class-es-reports-table.php:633
@@ -1908,32 +1908,32 @@ msgstr ""
1908
  msgid "In Queue"
1909
  msgstr ""
1910
 
1911
- #: lite/includes/class-es-common.php:2532
1912
  msgid "Select field type"
1913
  msgstr ""
1914
 
1915
- #: lite/includes/class-es-common.php:2535
1916
  msgid "Text"
1917
  msgstr ""
1918
 
1919
- #: lite/includes/class-es-common.php:2536
1920
  msgid "TextArea"
1921
  msgstr ""
1922
 
1923
- #: lite/includes/class-es-common.php:2537
1924
  msgid "Dropdown"
1925
  msgstr ""
1926
 
1927
- #: lite/includes/class-es-common.php:2538
1928
  msgid "Radio"
1929
  msgstr ""
1930
 
1931
- #: lite/includes/class-es-common.php:2539
1932
  #: lite/includes/workflows/fields/class-es-number.php:48
1933
  msgid "Number"
1934
  msgstr ""
1935
 
1936
- #: lite/includes/class-es-common.php:2540
1937
  #: lite/includes/pro-features.php:1187
1938
  #: lite/includes/workflows/admin/views/meta-box-timing.php:82
1939
  #: lite/includes/workflows/fields/class-es-date.php:31
@@ -3214,13 +3214,13 @@ msgstr ""
3214
  msgid "No Forms avaliable."
3215
  msgstr ""
3216
 
3217
- #: lite/includes/classes/class-es-handle-post-notification.php:434
3218
- #: lite/includes/classes/class-es-handle-post-notification.php:531
3219
  msgid "View Reports"
3220
  msgstr ""
3221
 
3222
  #. translators: %s: Post type name
3223
- #: lite/includes/classes/class-es-handle-post-notification.php:562
3224
  msgid "Notification emails has been queued for this %s."
3225
  msgstr ""
3226
 
@@ -3983,8 +3983,8 @@ msgid "Duplicate"
3983
  msgstr ""
3984
 
3985
  #: lite/includes/classes/class-es-templates-table.php:237
3986
- #: lite/includes/db/class-es-db-campaigns.php:746
3987
- #: lite/includes/db/class-es-db-campaigns.php:749
3988
  msgid "Copy"
3989
  msgstr ""
3990
 
2
  # This file is distributed under the same license as the Email Subscribers & Newsletters plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Email Subscribers & Newsletters 5.4.10\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/email-subscribers\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2022-08-31T16:00:26+02:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.4.0\n"
15
  "X-Domain: email-subscribers\n"
561
  msgid "Something went wrong. Please try again later."
562
  msgstr ""
563
 
564
+ #: lite/admin/class-es-campaign-admin.php:1196
565
+ #: lite/admin/class-es-campaign-admin.php:1216
566
+ #: lite/admin/class-es-campaign-admin.php:1225
567
  #: lite/includes/classes/class-es-templates-table.php:56
568
  #: lite/includes/classes/class-es-templates-table.php:67
569
  #: lite/includes/classes/class-es-templates-table.php:73
571
  msgid "Available Keywords"
572
  msgstr ""
573
 
574
+ #: lite/admin/class-es-campaign-admin.php:1216
575
  #: lite/includes/classes/class-es-templates-table.php:73
576
  msgid "for Broadcast:"
577
  msgstr ""
578
 
579
+ #: lite/admin/class-es-campaign-admin.php:1225
580
  #: lite/includes/classes/class-es-templates-table.php:78
581
  msgid "for Post Digest:"
582
  msgstr ""
583
 
584
+ #: lite/admin/class-es-campaign-admin.php:1229
585
  #: lite/includes/classes/class-es-templates-table.php:79
586
  msgid "Any keywords related Post Notification"
587
  msgstr ""
588
 
589
  #. translators: %s: link to new keyword doc
590
+ #: lite/admin/class-es-campaign-admin.php:1318
591
  msgid "%1$s[Update]%2$s: Improved keyword structure. Made it easy to use in campaign. Checkout %3$shere%4$s."
592
  msgstr ""
593
 
1358
 
1359
  #: lite/admin/partials/help.php:239
1360
  #: lite/includes/class-es-common.php:581
1361
+ #: lite/includes/class-es-common.php:2057
1362
+ #: lite/includes/class-es-common.php:2508
1363
  #: lite/includes/classes/class-es-campaign-report.php:172
1364
  #: lite/includes/classes/class-es-campaigns-table.php:309
1365
  #: lite/includes/workflows/admin/views/meta-box-save.php:28
1370
 
1371
  #: lite/admin/partials/help.php:241
1372
  #: lite/includes/class-es-common.php:582
1373
+ #: lite/includes/class-es-common.php:2513
1374
  #: lite/includes/classes/class-es-campaign-report.php:177
1375
  #: lite/includes/workflows/admin/views/meta-box-save.php:27
1376
  #: pro/classes/class-es-pro-reports-data.php:198
1820
  msgid "5 Simple Tricks to Improve Email Marketing Campaign Results"
1821
  msgstr ""
1822
 
1823
+ #: lite/includes/class-es-common.php:1839
1824
  #: lite/includes/pro-features.php:195
1825
  msgid "Email Subscribers PRO"
1826
  msgstr ""
1827
 
1828
+ #: lite/includes/class-es-common.php:1841
1829
+ msgid "PRO"
1830
  msgstr ""
1831
 
1832
+ #: lite/includes/class-es-common.php:1845
1833
  msgid "<b>Email Subscribers Secret Club</b>"
1834
  msgstr ""
1835
 
1836
+ #: lite/includes/class-es-common.php:1847
1837
  #: lite/includes/feedback.php:123
1838
  msgid "Join Now"
1839
  msgstr ""
1840
 
1841
+ #: lite/includes/class-es-common.php:2025
1842
  msgid "All Types"
1843
  msgstr ""
1844
 
1845
+ #: lite/includes/class-es-common.php:2053
1846
  #: lite/includes/classes/class-es-campaigns-table.php:569
1847
  msgid "Draft"
1848
  msgstr ""
1849
 
1850
+ #: lite/includes/class-es-common.php:2054
1851
+ #: lite/includes/class-es-common.php:2499
1852
  #: lite/includes/classes/class-es-campaign-report.php:165
1853
  #: lite/includes/classes/class-es-campaign-report.php:484
1854
  #: lite/includes/classes/class-es-campaigns-table.php:550
1859
  msgid "Sending"
1860
  msgstr ""
1861
 
1862
+ #: lite/includes/class-es-common.php:2055
1863
  #: lite/includes/classes/class-es-campaigns-table.php:310
1864
  #: lite/includes/classes/class-es-campaigns-table.php:543
1865
  #: lite/includes/classes/class-es-campaigns-table.php:579
1868
  msgid "Scheduled"
1869
  msgstr ""
1870
 
1871
+ #: lite/includes/class-es-common.php:2056
1872
+ #: lite/includes/class-es-common.php:2479
1873
  #: lite/includes/classes/class-es-campaign-report.php:149
1874
  #: lite/includes/classes/class-es-campaign-report.php:249
1875
  #: lite/includes/classes/class-es-campaign-report.php:468
1883
  msgid "Sent"
1884
  msgstr ""
1885
 
1886
+ #: lite/includes/class-es-common.php:2081
1887
  #: lite/includes/classes/class-es-campaigns-table.php:691
1888
  #: lite/includes/classes/class-es-contacts-table.php:1186
1889
  msgid "All Statuses"
1890
  msgstr ""
1891
 
1892
+ #: lite/includes/class-es-common.php:2293
1893
  msgid "Upgrade"
1894
  msgstr ""
1895
 
1896
+ #: lite/includes/class-es-common.php:2329
1897
  #: lite/includes/classes/class-es-reports-table.php:636
1898
  #: pro/classes/class-es-pro-reports-data.php:878
1899
  msgid "All Status"
1900
  msgstr ""
1901
 
1902
+ #: lite/includes/class-es-common.php:2489
1903
  #: lite/includes/classes/class-es-campaign-report.php:157
1904
  #: lite/includes/classes/class-es-campaign-report.php:476
1905
  #: lite/includes/classes/class-es-reports-table.php:633
1908
  msgid "In Queue"
1909
  msgstr ""
1910
 
1911
+ #: lite/includes/class-es-common.php:2534
1912
  msgid "Select field type"
1913
  msgstr ""
1914
 
1915
+ #: lite/includes/class-es-common.php:2537
1916
  msgid "Text"
1917
  msgstr ""
1918
 
1919
+ #: lite/includes/class-es-common.php:2538
1920
  msgid "TextArea"
1921
  msgstr ""
1922
 
1923
+ #: lite/includes/class-es-common.php:2539
1924
  msgid "Dropdown"
1925
  msgstr ""
1926
 
1927
+ #: lite/includes/class-es-common.php:2540
1928
  msgid "Radio"
1929
  msgstr ""
1930
 
1931
+ #: lite/includes/class-es-common.php:2541
1932
  #: lite/includes/workflows/fields/class-es-number.php:48
1933
  msgid "Number"
1934
  msgstr ""
1935
 
1936
+ #: lite/includes/class-es-common.php:2542
1937
  #: lite/includes/pro-features.php:1187
1938
  #: lite/includes/workflows/admin/views/meta-box-timing.php:82
1939
  #: lite/includes/workflows/fields/class-es-date.php:31
3214
  msgid "No Forms avaliable."
3215
  msgstr ""
3216
 
3217
+ #: lite/includes/classes/class-es-handle-post-notification.php:432
3218
+ #: lite/includes/classes/class-es-handle-post-notification.php:529
3219
  msgid "View Reports"
3220
  msgstr ""
3221
 
3222
  #. translators: %s: Post type name
3223
+ #: lite/includes/classes/class-es-handle-post-notification.php:560
3224
  msgid "Notification emails has been queued for this %s."
3225
  msgstr ""
3226
 
3983
  msgstr ""
3984
 
3985
  #: lite/includes/classes/class-es-templates-table.php:237
3986
+ #: lite/includes/db/class-es-db-campaigns.php:748
3987
+ #: lite/includes/db/class-es-db-campaigns.php:751
3988
  msgid "Copy"
3989
  msgstr ""
3990
 
readme.txt CHANGED
@@ -4,9 +4,9 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Author URI: https://www.icegram.com/
5
  Tags: email marketing, subscription, autoresponder, post notification, welcome email
6
  Requires at least: 3.9
7
- Tested up to: 6.0.1
8
  Requires PHP: 5.6
9
- Stable tag: 5.4.9
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses
12
 
@@ -310,14 +310,18 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
310
 
311
  == Upgrade Notice ==
312
 
313
- = 5.4.9 =
314
 
315
- * Enhancement: Added failed status for campaign in case email delivery fails
316
- * Enhancement: Added workflow trigger for failed campaigns
317
- * Fix: Form fields were not rendering properly when viewed in popup[PRO]
318
 
319
  == Changelog ==
320
 
 
 
 
 
 
321
  **5.4.9 (25.08.2022)**
322
 
323
  * Enhancement: Added failed status for campaign in case email delivery fails
4
  Author URI: https://www.icegram.com/
5
  Tags: email marketing, subscription, autoresponder, post notification, welcome email
6
  Requires at least: 3.9
7
+ Tested up to: 6.0.2
8
  Requires PHP: 5.6
9
+ Stable tag: 5.4.10
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses
12
 
310
 
311
  == Upgrade Notice ==
312
 
313
+ = 5.4.10 =
314
 
315
+ * Enhancement: Added option to disable subscription API
316
+ * Fix: Duplicate campaign scheduling issue[PRO]
 
317
 
318
  == Changelog ==
319
 
320
+ **5.4.10 (01.09.2022)**
321
+
322
+ * Enhancement: Added option to disable subscription API
323
+ * Fix: Duplicate campaign scheduling issue[PRO]
324
+
325
  **5.4.9 (25.08.2022)**
326
 
327
  * Enhancement: Added failed status for campaign in case email delivery fails