drupal 7 - User registration form change Username to name -
i want change label of registration form 'username' name. had used 'string overrides' module. not effecting. there way out. please me out.
implement custom module , alter 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 custom module name.
Comments
Post a Comment