Quantcast
Channel: Active questions tagged users - Drupal Answers
Viewing all articles
Browse latest Browse all 454

Alter Registration Form Text

$
0
0

I am trying to alter the email description text on my user registration page. I have added the following to the bottom of my template.php file but nothing is happening. It seems like the function isn't even being called. Any suggestions?

function theme_form_alter(&$form, &$form_state, $form_id){    switch($form_id) {        case 'user_register_form':            $form['account']['mail']['#description'] = t('E-mail Address');    }}

Viewing all articles
Browse latest Browse all 454

Trending Articles