Hey! I subscribed and it seems to be working fine. Can you confirm?
Yeah subscription works fine for me too.
Check your other plugins, maybe one of them is conflicting.
http://support.wysija.com/knowledgebase/list-of-plugins-that-may-cause-conflict/
Cheers,
Ben
Hello again,
I think I know what was going on, you probably had your wp-admin folder protected with an htpasswd.
I saw that issue recently, technically our subscription process is done in AJAX by default and tries to reach the page wp-admin/admin-ajax.php so it will fail if you protect that folder. The solution in that case is to make an exception to that rule in your htaccess with a rule like that one :
<Files admin-ajax.php>
Order allow,deny
Allow from all
Satisfy any
</Files>
You can read more here :
http://www.wpbeginner.com/wp-tutorials/how-to-password-protect-your-wordpress-admin-wp-admin-directory/
and a similar issue here :
http://wordpress.org/support/topic/theme-redirects-ajax-requests-for-users-that-are-not-logged-in?replies=8
Hope this helps!
Ben