Version Description
(05.04.2018) =
- Fix: Special characters in the post title showing as html entities when using {{POSTTITLE}} keyword [due to
get_the_title($post)
] - Fix: 'Oops.. Unexpected error occurred 0.' in Email Subscribers - Group Selector form when subscriber status is unconfirmed or unsubscribed
Download this release
Release Info
Developer | storeapps |
Plugin | Email Subscribers & Newsletters |
Version | 3.4.11 |
Comparing to | |
See all releases |
Code changes from version 3.4.10 to 3.4.11
- changelog.txt +5 -0
- classes/es-sendmail.php +5 -0
- email-subscribers.php +2 -2
- languages/email-subscribers-ca.mo +0 -0
- languages/email-subscribers-ca.po +2 -2
- languages/email-subscribers-cs_CZ.mo +0 -0
- languages/email-subscribers-cs_CZ.po +2 -2
- languages/email-subscribers-de_DE.mo +0 -0
- languages/email-subscribers-de_DE.po +2 -2
- languages/email-subscribers-es_ES.mo +0 -0
- languages/email-subscribers-es_ES.po +2 -2
- languages/email-subscribers-fr_FR.mo +0 -0
- languages/email-subscribers-fr_FR.po +2 -2
- languages/email-subscribers-hu_HU.mo +0 -0
- languages/email-subscribers-hu_HU.po +2 -2
- languages/email-subscribers-it_IT.mo +0 -0
- languages/email-subscribers-it_IT.po +2 -2
- languages/email-subscribers-lt_LT.mo +0 -0
- languages/email-subscribers-lt_LT.po +2 -2
- languages/email-subscribers-nb_NO.mo +0 -0
- languages/email-subscribers-nb_NO.po +2 -2
- languages/email-subscribers-pl_PL.mo +0 -0
- languages/email-subscribers-pl_PL.po +2 -2
- languages/email-subscribers-pt_BR.mo +0 -0
- languages/email-subscribers-pt_BR.po +2 -2
- languages/email-subscribers-sv_SE.mo +0 -0
- languages/email-subscribers-sv_SE.po +2 -2
- languages/email-subscribers-tr_TR.mo +0 -0
- languages/email-subscribers-tr_TR.po +2 -2
- languages/email-subscribers.pot +2 -2
- query/db_subscriber.php +6 -2
- readme.txt +13 -3
changelog.txt
CHANGED
@@ -4,6 +4,11 @@ Author : Icegram
|
|
4 |
Author URI : https://www.icegram.com/
|
5 |
License : GPLv3
|
6 |
|
|
|
|
|
|
|
|
|
|
|
7 |
************************************************************Version 3.4.10************************************************************
|
8 |
|
9 |
* New: Improvements in the subscribe form
|
4 |
Author URI : https://www.icegram.com/
|
5 |
License : GPLv3
|
6 |
|
7 |
+
************************************************************Version 3.4.11************************************************************
|
8 |
+
|
9 |
+
* Fix: Special characters in the post title showing as html entities when using {{POSTTITLE}} keyword [due to `get_the_title($post)`]
|
10 |
+
* Fix: 'Oops.. Unexpected error occurred 0.' in Email Subscribers - Group Selector form when subscriber status is unconfirmed or unsubscribed
|
11 |
+
|
12 |
************************************************************Version 3.4.10************************************************************
|
13 |
|
14 |
* New: Improvements in the subscribe form
|
classes/es-sendmail.php
CHANGED
@@ -278,9 +278,14 @@ class es_cls_sendmail {
|
|
278 |
$post_thumbnail_link = "";
|
279 |
$post = get_post($post_id);
|
280 |
$excerpt_length = 50; //Change this value to change the {{POSTDESC}} content in the Post Notification. It also considers spaces as a character.
|
|
|
281 |
$post_title = "";
|
282 |
$post_title = get_the_title( $post );
|
|
|
|
|
|
|
283 |
$subject = str_replace('{{POSTTITLE}}', $post_title, $subject);
|
|
|
284 |
$post_link = get_permalink($post_id);
|
285 |
$subject = str_replace('{{POSTLINK}}', $post_link, $subject);
|
286 |
$post_date = $post->post_modified;
|
278 |
$post_thumbnail_link = "";
|
279 |
$post = get_post($post_id);
|
280 |
$excerpt_length = 50; //Change this value to change the {{POSTDESC}} content in the Post Notification. It also considers spaces as a character.
|
281 |
+
|
282 |
$post_title = "";
|
283 |
$post_title = get_the_title( $post );
|
284 |
+
$blog_charset = get_option( 'blog_charset' );
|
285 |
+
// using html_entity_decode() because get_the_title() doesn't handle special characters.
|
286 |
+
$post_title = html_entity_decode( $post_title, ENT_QUOTES, $blog_charset );
|
287 |
$subject = str_replace('{{POSTTITLE}}', $post_title, $subject);
|
288 |
+
|
289 |
$post_link = get_permalink($post_id);
|
290 |
$subject = str_replace('{{POSTLINK}}', $post_link, $subject);
|
291 |
$post_date = $post->post_modified;
|
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: 3.4.
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.4
|
10 |
-
* Tested up to: 4.9.
|
11 |
* Text Domain: email-subscribers
|
12 |
* Domain Path: /languages/
|
13 |
* License: GPLv3
|
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.11
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.4
|
10 |
+
* Tested up to: 4.9.5
|
11 |
* Text Domain: email-subscribers
|
12 |
* Domain Path: /languages/
|
13 |
* License: GPLv3
|
languages/email-subscribers-ca.mo
CHANGED
Binary file
|
languages/email-subscribers-ca.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: https://www.storeapps.org/support/contact-us/\n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Catalan\n"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.11\n"
|
4 |
"Report-Msgid-Bugs-To: https://www.storeapps.org/support/contact-us/\n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Thu Apr 05 2018 12:12:29 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Catalan\n"
|
languages/email-subscribers-cs_CZ.mo
CHANGED
Binary file
|
languages/email-subscribers-cs_CZ.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Czech\n"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.11\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Thu Apr 05 2018 12:12:20 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Czech\n"
|
languages/email-subscribers-de_DE.mo
CHANGED
Binary file
|
languages/email-subscribers-de_DE.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: German\n"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.11\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Thu Apr 05 2018 12:13:04 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: German\n"
|
languages/email-subscribers-es_ES.mo
CHANGED
Binary file
|
languages/email-subscribers-es_ES.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Spanish (Spain)\n"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.11\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Thu Apr 05 2018 12:12:38 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Spanish (Spain)\n"
|
languages/email-subscribers-fr_FR.mo
CHANGED
Binary file
|
languages/email-subscribers-fr_FR.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: French (France)\n"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.11\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Thu Apr 05 2018 12:12:10 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: French (France)\n"
|
languages/email-subscribers-hu_HU.mo
CHANGED
Binary file
|
languages/email-subscribers-hu_HU.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Hungarian\n"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.11\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Thu Apr 05 2018 12:13:00 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Hungarian\n"
|
languages/email-subscribers-it_IT.mo
CHANGED
Binary file
|
languages/email-subscribers-it_IT.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Italian\n"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.11\n"
|
4 |
"Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Thu Apr 05 2018 12:12:34 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Italian\n"
|
languages/email-subscribers-lt_LT.mo
CHANGED
Binary file
|
languages/email-subscribers-lt_LT.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Lithuanian\n"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.11\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Thu Apr 05 2018 12:12:16 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Lithuanian\n"
|
languages/email-subscribers-nb_NO.mo
CHANGED
Binary file
|
languages/email-subscribers-nb_NO.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Norwegian (Bokmål)\n"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.11\n"
|
4 |
"Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Thu Apr 05 2018 12:12:42 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Norwegian (Bokmål)\n"
|
languages/email-subscribers-pl_PL.mo
CHANGED
Binary file
|
languages/email-subscribers-pl_PL.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Polish\n"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.11\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Thu Apr 05 2018 12:12:50 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Polish\n"
|
languages/email-subscribers-pt_BR.mo
CHANGED
Binary file
|
languages/email-subscribers-pt_BR.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Portuguese (Brazil)\n"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.11\n"
|
4 |
"Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Thu Apr 05 2018 12:12:46 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Portuguese (Brazil)\n"
|
languages/email-subscribers-sv_SE.mo
CHANGED
Binary file
|
languages/email-subscribers-sv_SE.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Swedish\n"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.11\n"
|
4 |
"Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Thu Apr 05 2018 12:12:54 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Swedish\n"
|
languages/email-subscribers-tr_TR.mo
CHANGED
Binary file
|
languages/email-subscribers-tr_TR.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Turkish\n"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.11\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Thu Apr 05 2018 12:12:25 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Turkish\n"
|
languages/email-subscribers.pot
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
#, fuzzy
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
6 |
"Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
|
7 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
8 |
-
"POT-Revision-Date:
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
2 |
#, fuzzy
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.11\n"
|
6 |
"Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
|
7 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
8 |
+
"POT-Revision-Date: Thu Apr 05 2018 12:09:36 GMT+0530 (IST)\n"
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
query/db_subscriber.php
CHANGED
@@ -281,7 +281,7 @@ class es_cls_dbquery {
|
|
281 |
|
282 |
$sSql = "SELECT * FROM `".$wpdb->prefix."es_emaillist` where es_email_mail='".$data["es_email_mail"]."' and es_email_group='".trim($data["es_email_group"])."'";
|
283 |
$arrRes = $wpdb->get_results($sSql, ARRAY_A);
|
284 |
-
|
285 |
if ( !empty( $arrRes ) && count($arrRes) > 0 ) {
|
286 |
if( $arrRes[0]['es_email_status'] == "Confirmed" || $arrRes[0]['es_email_status'] == "Single Opt In" ) {
|
287 |
return "ext";
|
@@ -292,7 +292,11 @@ class es_cls_dbquery {
|
|
292 |
$form['es_email_group'] = sanitize_text_field(esc_attr($data["es_email_group"]));
|
293 |
$form['es_email_status'] = sanitize_text_field(esc_attr($data["es_email_status"]));
|
294 |
$form['es_email_id'] = $arrRes[0]["es_email_id"];
|
295 |
-
|
|
|
|
|
|
|
|
|
296 |
$action = es_cls_dbquery::es_view_subscriber_ins($form, $action = "update");
|
297 |
return $action;
|
298 |
}
|
281 |
|
282 |
$sSql = "SELECT * FROM `".$wpdb->prefix."es_emaillist` where es_email_mail='".$data["es_email_mail"]."' and es_email_group='".trim($data["es_email_group"])."'";
|
283 |
$arrRes = $wpdb->get_results($sSql, ARRAY_A);
|
284 |
+
|
285 |
if ( !empty( $arrRes ) && count($arrRes) > 0 ) {
|
286 |
if( $arrRes[0]['es_email_status'] == "Confirmed" || $arrRes[0]['es_email_status'] == "Single Opt In" ) {
|
287 |
return "ext";
|
292 |
$form['es_email_group'] = sanitize_text_field(esc_attr($data["es_email_group"]));
|
293 |
$form['es_email_status'] = sanitize_text_field(esc_attr($data["es_email_status"]));
|
294 |
$form['es_email_id'] = $arrRes[0]["es_email_id"];
|
295 |
+
if ( array_key_exists( 'es_nonce', $data ) ) {
|
296 |
+
$form['es_nonce'] = $data['es_nonce'];
|
297 |
+
} elseif ( array_key_exists( 'es_af_nonce', $data ) ) {
|
298 |
+
$form['es_af_nonce'] = $data['es_af_nonce'];
|
299 |
+
}
|
300 |
$action = es_cls_dbquery::es_view_subscriber_ins($form, $action = "update");
|
301 |
return $action;
|
302 |
}
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ 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, 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.9.
|
8 |
-
Stable tag: 3.4.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses
|
11 |
|
@@ -287,7 +287,7 @@ Refer [here](https://www.icegram.com/documentation/es-css-help/).
|
|
287 |
|
288 |
Refer [here](https://www.icegram.com/documentation/es-faq/).
|
289 |
|
290 |
-
= 25. How to
|
291 |
|
292 |
Use our free plugin [Email Subscribers - Group Selector](https://wordpress.org/plugins/email-subscribers-advanced-form/).
|
293 |
|
@@ -317,6 +317,11 @@ Use our free plugin [Email Subscribers - Group Selector](https://wordpress.org/p
|
|
317 |
|
318 |
== Changelog ==
|
319 |
|
|
|
|
|
|
|
|
|
|
|
320 |
= 3.4.10 (03.04.2018) =
|
321 |
|
322 |
* New: Improvements in the subscribe form
|
@@ -745,6 +750,11 @@ For the changelog of earlier versions, please refer to the separate [changelog.t
|
|
745 |
|
746 |
== Upgrade Notice ==
|
747 |
|
|
|
|
|
|
|
|
|
|
|
748 |
= 3.4.10 (03.04.2018) =
|
749 |
|
750 |
* New: Improvements in the subscribe form
|
4 |
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.9.5
|
8 |
+
Stable tag: 3.4.11
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses
|
11 |
|
287 |
|
288 |
Refer [here](https://www.icegram.com/documentation/es-faq/).
|
289 |
|
290 |
+
= 25. How to allow user to select the group when subscribing via subscribe form? =
|
291 |
|
292 |
Use our free plugin [Email Subscribers - Group Selector](https://wordpress.org/plugins/email-subscribers-advanced-form/).
|
293 |
|
317 |
|
318 |
== Changelog ==
|
319 |
|
320 |
+
= 3.4.11 (05.04.2018) =
|
321 |
+
|
322 |
+
* Fix: Special characters in the post title showing as html entities when using {{POSTTITLE}} keyword [due to `get_the_title($post)`]
|
323 |
+
* Fix: 'Oops.. Unexpected error occurred 0.' in Email Subscribers - Group Selector form when subscriber status is unconfirmed or unsubscribed
|
324 |
+
|
325 |
= 3.4.10 (03.04.2018) =
|
326 |
|
327 |
* New: Improvements in the subscribe form
|
750 |
|
751 |
== Upgrade Notice ==
|
752 |
|
753 |
+
= 3.4.11 (05.04.2018) =
|
754 |
+
|
755 |
+
* Fix: Special characters in the post title showing as html entities when using {{POSTTITLE}} keyword [due to `get_the_title($post)`]
|
756 |
+
* Fix: 'Oops.. Unexpected error occurred 0.' in Email Subscribers - Group Selector form when subscriber status is unconfirmed or unsubscribed
|
757 |
+
|
758 |
= 3.4.10 (03.04.2018) =
|
759 |
|
760 |
* New: Improvements in the subscribe form
|