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.

Form Action

  1. How do I change the form action?

    For example:

    <form action="https://b2b.infusionsoft.com/AddForms/processFormSecure.jsp" method='POST'>

    Thanks
    Les

    Posted 14 years ago on Tuesday November 3, 2009 | Permalink
  2. Gravity Forms is designed to submit to itself and handles the form processing and form validation. The form action isn't currently configurable. What exactly are you trying to accomplish? There may be other ways to do what you are trying to do using the available API hooks.

    Posted 14 years ago on Tuesday November 3, 2009 | Permalink
  3. I'd like to use Gravity Forms to manage my Infusionsoft forms...

    <form action="https://b2b.infusionsoft.com/AddForms/processFormSecure.jsp" method='POST'>
    <input id="xid" name="xid" type="hidden" value="eed9c93c768b2e26e86af7cd3c581a68" />
    <input id="type" name="type" type="hidden" value="CustomFormWeb" />
    <input id="name" name="name" type="hidden" value="LPD Contact" />
    <table>
    <tr><td colspan=99 style="padding:4px;background-color:#000000;color:#FFFFFF">Contact Information</td></tr>
    <tr><td>First Name *</td><td><input type='text' name='Contact0FirstName' value=''></td></tr>
    <tr><td>Last Name *</td><td><input type='text' name='Contact0LastName' value=''></td></tr>
    <tr><td>Company</td><td><input type='text' name='Contact0Company' value=''></td></tr>
    <tr><td>Phone *</td><td><input type='text' name='Contact0Phone1' value=''></td></tr>
    <tr><td>Email *</td><td><input type='text' name='Contact0Email' value=''></td></tr>
    <tr><td>Your comments</td><td><textarea name='Contact0ContactNotes' cols="24" rows="5"></textarea></td></tr>
    <tr><td colspan=2><input id="Submit" name="Submit" class="button np inf-button" type="submit" value="Submit" /></td></tr>
    </table>
    </form>

    Mainly because I wanted to find some AJAX/CSS where I could apply a similar style to all the forms in my website. If that's not going to work I may have to continue using Hana Code Insert Plugin and just manually configure them.

    Thanks Carl!

    P.S. Could you email me when you respond? Thanks again.

    Posted 14 years ago on Tuesday November 3, 2009 | Permalink
  4. As far as being able to easily change the form action this isn't currently possible. it prevents all sorts of issues such as form field validation, etc. which would need to be done by the application that you are submitting to and obviously it wouldn't be compatible.

    But you might be able to pass the data to the other service using the available form processing hooks if that other service has some sort of API for receiving data.

    Posted 14 years ago on Tuesday November 3, 2009 | Permalink