I had this problem while using the AJAX version of this plugin. For anyone that wants the plugin to send an email to admin when new user subscribes, you need to add the function into quicksubscribe.php in the plugins folder.
the function is:
wp_new_user_notification($user_id);
Look for line 57:
$user = new WP_User($user_id);
$user->set_role('subscriber');
and change to:
$user = new WP_User($user_id);
wp_new_user_notification($user_id);
$user->set_role('subscriber');
If you want to also email the subscriber (although I see no point in this) then change:
wp_new_user_notification($user_id);
to:
wp_new_user_notification($user_id, $user_pass);
Hope this helps!
https://www.ads-software.com/extend/plugins/quick-subscribe/
]]>I am having problems with quick subscribe. It is not sending emails to subscribers. I have godaddy hosting.
Can anyone please help!!!
thanks!
Any way to see who has subscribed using QS? Don’t see anything in the stats. Is there another plug-in needed to view subscriber stats?
Thx
https://www.ads-software.com/extend/plugins/quick-subscribe/
]]>Great, simple to use, no problems at all. Many Thanks…
]]>