Password plugin – movin’ it about

Hi

Got the password plugin and having installed it, its been placed at the bottom of the signup page when I require it at the top under ‘username’ field.

How can I do this?

Cheers in advance

  • webdev
    • New Recruit

    Managed to solve this one:

    I created a new hook, replacing ‘signup_extra_fields’ on the signup_password.php page with ‘password_field’. I then found on line 120 the call to the hook, and created a new do_action:

    echo ‘<div id=”extra-fields”>’;

    do_action(‘password_field’, $errors );

    echo ‘</div’;

    I placed this above the extra fields do_action function. This also removed the password field from appearing in the extra fields section at the bottom.