How can i change the Start/Complete text in the progressbar on page break?
There is only option for the text in steps between.

Comments

DanChadwick’s picture

Status: Active » Fixed

Use these variables, which you can set with $conf['VARIABLE NAME'] = t('Your test'); in your settings.php.

...
    case 'webform_progressbar_label_first':
      $result = variable_get('webform_progressbar_label_first', t('Start'));
      break;
    case 'webform_progressbar_label_confirmation':
      $result = variable_get('webform_progressbar_label_confirmation', t('Complete'));
      break;
...
Liakoni’s picture

Is this code to a specific file or i have to write it ?

DanChadwick’s picture

These are the keys for setting the array element in $conf in your settings.php. We don't provide programming support in this issue queue. Try the forums or IRC. It's not hard. Good luck.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.