Can I have a print option without an option to submit?

  • TLX
    Asked on April 9, 2018 at 10:24 AM

    I'm trying to create a form that people will fill in and print out to sign and send, or they can just print it out and hand write it and send it to us, but I don't want them to be able to electronically submit. 


    Is this possible? 

  • BJoanna
    Replied on April 9, 2018 at 12:22 PM

    You can hide the submit button with CSS code and leave only the Print button on your form. Add this CSS code to your form to hide the submit button:

    .form-submit-button{

      display: none;

    }

    How to Inject Custom CSS Codes

    Print Button on Forms

    Here is my demo form: https://form.jotform.com/80985200104953 

    Feel free to test it and clone it.

    Hope this meet what you are looking for.