Kim
(@kimberry)
I believe I’m also experiencing this problem. Running SB Welcome Email Editor v.4.8 and WP v.4.4.1. If anyone has any ideas that would be great! If I come up with anything I’ll remember to post back here too.
Did you guys come up with a solution to this? I am experiencing the same problem.
Kim
(@kimberry)
Hi dsutton01,
Unfortunately not. I changed my process to work around it. Avoiding using the welcome email altogether.
Hopefully there is a fix at some stage. Still keen to use this plugin.
I wanted to confirm this as well. My new registration emails are no longer being sent when a user registers through Gravity Forms.
Same problem for me 🙁 Hope this gets worked out.
Or can anyone recommend an alternative?
Confirming that the new registration emails to users are not being sent because of a Gravity Forms User Registration conflict. I suspect it’s because The User Registration Add-on is still trying to send the password as plain text. I’m also seeing this error on the Admin side when trying to send test emails.
Notice: Undefined variable: reset_pass_url in /www/wp-content/plugins/welcome-email-editor/sb_welcome_email_editor.php on line 373
I have figured out how to fix the bug in the Gravity Forms User Registration Add-On and will report it to Gravity Forms (the plugin uses a deprecated parameter). In the plugin folder, edit class-gf-user-registration.php line 508.
Change it from:
wp_new_user_notification( $user_id, $user_data['password'] );
to:
wp_new_user_notification( $user_id, null, 'both' );
Kim
(@kimberry)
Thanks joelnewcomer,
I’ve only just had a chance to test this and it appears to have fixed the problem for me.
Thanks for sharing your solution!
I can confirm that this fix also works. GF needs to update their plugin to reflect changes to the wp_new_user_notification() function. Thanks!
I also confirm the fix which works for me as well.
Kudos to everyone and especially to joelnewcomer on this one.
FYI in my case I had to edit line 563.