I got a notification in s2member that another plugin was using wp_new_user_notification()
I discovered the plugin that seemed to be causing the problem and submitted a support ticket to their helpdesk. The developer sent this response…
Have you tested the New User Email function of S2Member? They may be showing this warning because they see that the file pluggable.php is already loaded… but that should not affect the ability for another plugin to use wp_new_user_notification() – especially since SVP is not using it.
If you need to ask the makers of S2Member about this to confirm my conclusion, you can give them the following code snippet which is what I use to include pluggable.php.
if (!function_exists(‘wp_get_current_user()’)) require_once(ABSPATH.’/wp-includes/pluggable.php’);
Then later I can use the function get_currentuserinfo()
Let me know what they say — if I need to make a change to my code, I will do so – but I don’t know why what I have now would affect their use of wp_new_user_notification().
Is it possible for that code snippet to be the problem?
Thanks much,
Rashell