Hi,

My client would like to change the label of the Next button. I've tried to do this with JS and the next button only works for the 1st question. All other instances do not save the answer and go back to Question 1.

Comments

strategicweb created an issue. See original summary.

djdevin’s picture

Category: Bug report » Support request
Status: Active » Closed (works as designed)

You can do this with a hook_form_alter, modify the form and change the button label.

You can also change any of the other button labels this way.

$form['navigation']['submit']['#value'] = t('New label');