I like to add a print button - but not a submit-button.

  • andreaslange
    Asked on June 10, 2020 05:31 AM

    I like to add a print button - but not a submit-button. How could I do this?

  • John Support Team Lead
    Answered on June 10, 2020 08:33 AM

    May we know why you would like to remove the Submit button? This isn't ideal because you cannot store the inputted data in your form if you will not submit them. 

    We can hide the submit button using custom CSS code, but then again, we cannot save the data without it.

  • andreaslange
    Answered on June 10, 2020 10:28 AM
    Of course you may know: In some cases we only like to offer a form without collecting data oder mailing the contact, only with the possibility to print at home for the user. I would prefer to use Jotform, because user know and love the style of Jotform-Forms.
    Viele Grüße,
    Dr. Andreas Lange
    Am 10. Juni 2020, 14:33 +0200 schrieb JotForm :
    ...
  • Kiran Support Team Lead
    Answered on June 10, 2020 11:52 AM

    You may add the following CSS code to the form to hide the Submit button on the form.

    .form-submit-button {

       display: none;

    }

    Thanks!