Yeah, disable the default WP email. This is the only way because the password reset link is generated upon sending. So WP probably overwrites the hash with a new one.
Good news is that we have this feature already implemented in the plugin and we’ll release version 6.1.0 very very soon.
Thread Starter
Daniel
(@skylayer)
Okay great, any recommendation from your side on how to achieve this in the most compatible way until you release the update?
Thanks again!
I think you could do:
remove_action( 'register_new_user', 'wp_send_new_user_notifications' );
remove_action( 'edit_user_created_user', 'wp_send_new_user_notifications' );
remove_action( 'network_site_new_created_user', 'wp_send_new_user_notifications' );
remove_action( 'network_site_users_created_user', 'wp_send_new_user_notifications' );
remove_action( 'network_user_new_created_user', 'wp_send_new_user_notifications' );
This is how we did it in the development version
Thread Starter
Daniel
(@skylayer)
Awesome thanks!
Last question (hopefully), under which circumstances does the plugin strip HTML from the message area?
It stips it when you enable that option in the settings π
But if you see the textarea in the email, the HTML will be stripped upon saving. It’s a glitch, also fixed in the dev version
Thread Starter
Daniel
(@skylayer)
Okay great, then I’ll just wait for the update. Or is there any chance to test the dev version?
Thanks
Well, it is π You can download from here: http://brkts.com/notification-dev
It’s built on every commit to develop so package refreshes automatically
Thread Starter
Daniel
(@skylayer)
Fantastic, do you have an open channel or something I could join? I’d love to give detailed feedback and help you guys develop. I have so many use cases.
Unfortunately we don’t but ideas are very welcome! The best directly via Github issues – it’s easier to keep track of everything
Thread Starter
Daniel
(@skylayer)
Ahh man, okay, so the dev version didn’t fix the issue. I still can’t paste my HTML template without it being stripped. Should I open a GitHub issue?
Hmm, please do, I’ll update you after verification & fix