sigrono
Forum Replies Created
-
Okay got it thanks!
Hi Kasia,
thanks for your reply. I’m just not quite sure about the$entry? How do I define that variable? Is it set by default? All other variables are clear.
Thank you very much!As already suggested by the social media team, here are some way to go.
1) First option would be to disable form submission storage on the database from the form settings and using Zapier integration to send data to an external database.
2) The second option would be to create a new extension using the API. We have detailed docs here:
https://premium.wpmudev.org/docs/api-plugin-development/forminator-api-docs/
3) The third option would be to use
forminator:form:submit:successhook to post formData to any other databaseI would prefer the second or last option. Therefore my question is, how do I hook the submitted data? Which variables are already set and how can I read the submitted form data?
add_action( 'forminator:form:submit:success', function() { //how do I get the ID or the form data from this hook? });Many thanks!
to be exact: is it possible to somehow catch the form data after submit in your Forminator Plugin? So one could save them into an external database without saving to the wordpress db and then requesting it? So on submit run script with data from the form.