• Resolved marianaianase

    (@marianaianase)


    Hi! My login and registration forms are customized according to my website. How can I customize the password change forms to be the same as the others without changing the .php files? Because if I change them, when the plugin is updated, the customizations will be lost.
    Thank you!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support Saroj Shah

    (@wpeverestsupportrep)

    Hi @marianaianase

    Thanks for writing in,

    You can customize the login password page by using following codes in the child theme’s functions.php file which will secure the change even if the plugin is updated.

    add_action( 'login_form_lostpassword', 'my_lost_password_page' ) );
    function my_lost_password_page() {
       // code to do the lost password stuff
    return;

    Please let me know if you have any other questions.

    Thanks!

    Thread Starter marianaianase

    (@marianaianase)

    Thank you for returning. I created my Registration and Login pages with the User Registration Plugin, with custom form fields and I would like to customize the “lost password” page with this plugin too, to be similar in appearance. Is it possible?

    Thread Starter marianaianase

    (@marianaianase)

    I mean, I have this: “mywebsite/my-account/lost-password/’ and I want to customize the “/lost-password/” page (form fields and texts), to be similar with the registration and login pages that I created on “User Registration” plugin.

    • This reply was modified 3 years, 2 months ago by marianaianase.
    Plugin Support Saroj Shah

    (@wpeverestsupportrep)

    Hi @marianaianase

    Thanks for writing back,

    If you want to customize the lost-password page design wise, you can use custom CSS to do so. Please let me know what changes would you like to have and also provide us the URL, I will let you know if it is possible or not.

    Thanks!

    Thread Starter marianaianase

    (@marianaianase)

    I got to make the changes I needed for now! Thank you!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How customize lost password page’ is closed to new replies.