Skip to main content

Form without send button

I want to make a form to put on my website.
It is a form with questions for someone to get a recommendation which course to start.
I use HTML code in the answers with conditional logic.
Therefore, people do not need to submit the form to see their choice.
Is it possible to remove the send button?

Thomas Oates

Add the following to the Custom CSS/JS section:

.hidden {
    display: none !important;
}

Then, in the form, click on the submit button, go to Advanced Options and add hidden to the Container Class.

Wendy Stienen

Thomas OatesΒ thank you. It worked!

Taylor Drayson

for future reference, you can use the built in class ff-hidden. There are other built in classes available too - https://fluentforms.com/docs/how-to-use-css-ready-classes/