@modernwoe,
Yes, look in the plugin’s code and you will find many apply_filters to do all this customizations.
For example:
$message = apply_filters( "clean_login_email_restoration_content", $message);
$subject = apply_filters( "clean_login_email_restoration_subject", $subject);
Thanks!
I’ve noticed there’s a bug a few lines below in the restore functionality which means that the edit profile page doesn’t ever get shown, only the visible password, as it always gets set to empty.
https://plugins.trac.ww.wp.xz.cn/browser/clean-login/trunk/include/controller.php
$edit_url = CleanLogin_Controller::get_edit_url();
$edit_url = '';
// If edit profile page exists the user will be redirected there
if( $edit_url != '')
-
This reply was modified 3 years, 11 months ago by
modernwoe.
Thanks for your message, I have just fixed and updated it!!