To view subscriber details, go to your plugin admin and click Subscriber menu (Refer Screen). In default it will show only emails start from A, B, C. To view all the emails, click ALL button in the top.
More info : http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscriber-management-and-import-and-export-email-address/
Getting error message “Please try after some time.” from subscription box?
1. Open JavaScript file from below mentioned location.
wp-content\plugins\email-subscribers\widget\es-widget.js
wp-content\plugins\email-subscribers\widget\es-widget-page.js
2. Go to line 71, 72
3. Remove the comment for that two lines.
From
//alert(xmlHttp.readyState);
//alert(xmlHttp.responseText);
To
alert(xmlHttp.readyState);
alert(xmlHttp.responseText);
And try it again, now you can see the actual error in the alert box.
Did that and got “1” in the box, “4” in the box then finally “There was a problem with the request”.
Error message wasn’t “Try After some time” it was “There was a problem”. The very last option.
Could it have anything to do with that I’m using it where the URL is name.com/test/blog vs name.com
Hi Can you send me your blog demo link for testing. send me via below contact us page.
http://www.gopiplus.com/work/contact/
Got your mail, Please see the findings below.
I have noted that you have some kind of URL redirection in your blog. your actual home page is http://salrgirl.com/deepoceans1/ but you have redirected to http://deepoceans1.com/
We have some security check in the plugin to prevent 3rd party form submission (This is like spam guard). Thus plugin is not working properly.
Go to this URL http://salrgirl.com/deepoceans1/ and subscribe your email. It should work.
Please find the temp solution to solve this issue.
1. Open file email-subscribers\job\es-subscribe.php
2. Go to line 43, 44 and 85 to 89
3. Comment all the lines
if (($samedomain !== false) && $samedomain < 5) // Line 43
{ // Line 44
} // Line 85
else // Line 86
{ // Line 87
echo “unexpected-error”; // Line 88
}
4. Save the file and try again.