Limited Support
Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.
We appreciate your patience and understanding while our team is away. Thank you for being part of the wpForo community!
Merry Christmas and Happy Holidays! 🎄
Aug 23, 2024 5:39 am
Hello, Could you please add a "Message Subject" box to the Reset Password Emails section in the next update?
1 Reply
Aug 23, 2024 5:45 am
Hi @ducky,
You can change it using small code in the Code Snippets plugin or directly in the functions.php file of your child WordPress theme:
function custom_reset_password_email_subject($subject, $user_login, $user_data) {
// Change the subject to your custom subject
$subject = 'Your Custom Reset Password Subject';
return $subject;
}
add_filter('retrieve_password_title', 'custom_reset_password_email_subject', 10, 3);
The doc: https://developer.wordpress.org/reference/hooks/retrieve_password_title/