I understand that I can use the Gform after submission hook to integrate with a third party application. I just need to clarify some details.
Is this action hook located in form_display.php of gravity forms?
How do I hide the data?
Thank you!
I understand that I can use the Gform after submission hook to integrate with a third party application. I just need to clarify some details.
Is this action hook located in form_display.php of gravity forms?
How do I hide the data?
Thank you!
To use hooks, you add the code to your Theme's functions.php file. What do you mean by "hiding the data"?
I think 'hidden' is related to this: http://www.gravityhelp.com/forums/topic/remove-from-total-field?replies=17&message=closed#post-111808
Yes Chris, this new topic is related to our previous discussion. Thanks!
Hello Chris, I'm going to try this new approach and let you know. Pretty much what I need to clarify is how to hide information sent like this: 'first_name' => $entry['1.3'],
Hide it from what? If you are using gform_after_submission to send the data to a third party service, it is being sent through a http request behind the scenes, it isn't "available" to see. You could make sure to have a SSL certificate to make the whole set-up more secure but I am not sure what you are looking for here... Have you taken a look at how our payment add-ons work to see what we do? Looking at those might give you examples for best practices.