PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Print/save form without completion?

  1. Hello,

    I am using a multi-page form, and would like to allow my users to save their work, and let them return to it later on. Is that possible?
    A similar/related question is if it is possible to have a "print" button to the form, so that the user can have a copy of it. (I know we can send the user the form by e-mail. But I am asking if there is any other way)

    Thansk,
    Tal

    Posted 11 years ago on Thursday December 20, 2012 | Permalink
  2. David Peralty

    Hi there, we don't have either of those features built-in to Gravity Forms. A third party has created a tool to save form data to return and complete it later: http://wordpress.org/extend/plugins/gravity-forms-data-persistence-add-on/

    As for the print button, you would need to come up with a print stylesheet. and then using the HTML field add a print button: http://javascript.about.com/library/blprint.htm

    Posted 11 years ago on Thursday December 20, 2012 | Permalink
  3. Hi David,
    Thank you for the two links.

    Can you offer me a simple example of creating the print button?

    Thanks,
    Tal

    Posted 11 years ago on Thursday December 20, 2012 | Permalink
  4. David Peralty

    Adding the following to a HTML form field should give you a print button:

    <input type="button" value=" Print this page "onclick="window.print();return false;" />
    Posted 11 years ago on Friday December 21, 2012 | Permalink