문제

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.

도움이 되었습니까?

해결책

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.

다른 팁

If you are looking for the permanent change than you can got to

modules/user/user.module

under

function user_account_form

line number 1033 change the title to

'#title' => t('Name')

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top