Search code examples
drupal-7user-registration

User registration form change Username to name


I want to change the label of a registration form from 'Username' to name. I had used 'String overrides' module. But its not effecting. Is there any way out. please help me out.


Solution

  • Implement your custom module and alter the registration form.

    /**
     * Implements hook_form_FORM_ID_alter().
     */
    function MyMODULE_form_user_register_form_alter(&$form, &$form_state) {
      $form['account']['name']['#title'] = 'YOUR REPLACED VALUE'; //Username default
    }
    

    MyMODULE is your custom module name.