Join the Team Forms community

141
members
11
new
J
d
B
R
M

Edit the Submit button in multi-page mode

Last updated 2 weeks ago
M
Muffins


I can't modify the function or language of the bottom buttons in multi-page mode.

I wanted additional functionality for the submit button, so I created another button.

But I still can't affect the 'Submit Form' button, so the original button is still there.

This is confusing for users. It would be nice to have an option to hide it.

E
M
1 comment·1 reply
E
Erin Dwyer

Hi Muffins,

It's worth mentioning that it's possible to hide the default submit button on a multi-page wizard using the custom CSS feature. To achieve this, you could follow the steps below (note you will need a paid subscription to have access to the custom CSS feature):

  1. Navigate to the form builder screen

  2. Click the "..." icon in the top right-hand corner followed by "Custom CSS"

  3. In the custom CSS editor add the following CSS:

CSS
.btn-wizard-nav-submit{
    display: none;
}


Here is the final outcome:

M
Muffins

Wow, thank you very much!