I would like to have just a print button and not a submit button too.

  • cooper2774
    Asked on February 2, 2017 at 5:23 PM

    I would like to have just a print button and no submit button.  There reason why is I need to have the person filling out the form sign it before we can do anything with the form.  Is there any way to do this?  Thank you for your time and help in this matter.

    Jotform Thread 1055294 Screenshot
  • Ian
    Replied on February 2, 2017 at 7:27 PM

    First step would be to place the Submit button on the form, and then set the Print Button to ON under Advanced Setting

    I would like to have just a print button and not a submit button too Screenshot 20

    Second Step would be to show the Print button, but not the Submit button. For that, you need to apply a bit of CSS. Now if you want this to be applied to all submit buttons, the code is quite simple:

    button.form-submit-button {
        display: none;
    }

    If you need it to be set for only specific submit button, while leaving others shown, you would need to apply the same code, but with slightly different code, like this:

    #id_1 button.form-submit-button {
        display: none;
    }

    Where the #id_1 is actually depending on your form setup and is usually different for each form (unless it is cloned).

    You can however see how to find it in this guide: How to apply custom CSS to a particular field

    Let us know if you have more questions.

    All of the CSS codes should be added to your form by following these steps: Inject Custom CSS Codes