• Hi there! Thanks for creating this plugin, it’s super helpful.

    I’m trying to restructure the html of the custom password fields in custom-passwords.php (lines 68-75) without directly modifying the file, but I haven’t been able to find a way.

    Is this possible? If not, what do you recommend I do to add my own html to the fields?

    Cheers

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Jeff Farthing

    (@jfarthing84)

    You could just copy the form to your theme’s directory and add them manually. You’d then need to remove the action that adds them in the first place.

    
    remove_action( 'register_form', array( Theme_My_Login_Custom_Passwords::get_object(), 'password_fields' ) );
    
    Thread Starter prodo

    (@prodo)

    Thanks, man!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to customize custom-passwords.php html structure’ is closed to new replies.