can you only have a print button?

  • MonicaBailey
    Asked on October 15, 2014 at 1:06 PM
  • raul
    Replied on October 15, 2014 at 2:00 PM

    Hello,

    Just to confirm, are you asking if you can add more than one print button in a form?
    If that's the case, may I ask why do you want to add a second print button?

    In most cases, you need only one print button since this will allow you to print the whole form.
    And you might get undesired results if you add more than one.

    Please let us know your thoughts and we'll do our best to help you out.

    Thanks.

  • MonicaBailey
    Replied on October 15, 2014 at 3:01 PM

    No, I only wanted the print button and not the submit button but I have since found a similar question/solution. Thanks and sorry about that!

  • raul
    Replied on October 15, 2014 at 4:39 PM

    Oh, sorry.
    I understand now.

    Well, you actually need to have the submit button, otherwise your submitters are not going to be able to submit their information and you are not going to be able to see their submissions.

    The information that they will enter in your form will be sent to you only when they have clicked the submit button.

    Being that said, if you're still interested in hiding the submit button there is a way to do it by injecting custom CSS in the form. The code you need to inject is the following:

    button[type=submit] { display: none; }

    I've created a demo for you to see what I mean, you can find it here: http://form.jotformpro.com/form/42867000332951 you can also clone it if you want to look deeper.

    Please let us know if you have further questions.

    Thanks.