Hi All,

I want to change the form button text. Which says "Create new account" to "Complete the Join Process".

How I can change this button text.

Thank You.

Comments

nikitas’s picture

you could try the string ovverides module or try to do some coding like this
http://mydrupal.com/customize_user_login_box_block

vj’s picture

In a custom module add this code

function yourmodule_form_alter(&$form, &$form_state, $form_id) {
  if ($form_id == 'user_register') {
    $form['submit']['#value'] = 'Complete the Join Process';
  }
}

gawas.sachin’s picture

thanx vj... it worked for me