Hi there, I am using WP with WHMCS and I have the CRM Addon for WHMCS. The have a html form that you can tune to match your website, the only code required (I guess) is the following:
How do I insert that in a GF?
Thank you very much
Hi there, I am using WP with WHMCS and I have the CRM Addon for WHMCS. The have a html form that you can tune to match your website, the only code required (I guess) is the following:
How do I insert that in a GF?
Thank you very much
If they provide a form, you can just use that instead of a Gravity Form. However, if you would like to capture the lead in Gravity Forms, you can change the form action with the gform_form_tag filter: http://www.gravityhelp.com/documentation/page/Gform_form_tag
That will allow you to set the action to your php form.
You can also use the gform_after_submission hook to take all your collected data and send it anywhere you like: http://www.gravityhelp.com/documentation/page/Gform_after_submission
I'm not sure how you can add those hidden fields to the form with the input names as you have them. You might be able to add them as HTML fields in the form, but I have never tried that. We normally recommend the gform_after_submission hook.