Tell us what you are trying to do?
I want to connect toolset form with google sheets.
When someone send a toolset form, my google sheet.
Is there any documentation that you are following?
https://toolset.com/forums/topic/automatically-send-user-submissions-to-google-sheets/
but i need to export.
I want to "connect it"
Is there a similar example that we can see?
I did it with contact form 7 with this plugin: hidden link
What is the link to your site?
it's a local site
Hello,
There isn't such kind of built-in feature within Toolset plugins. You might consider custom codes, for example:
1) After user submit the Toolset post form, use action hook "cred_save_data" to trigger a PHP function:
https://toolset.com/documentation/programmer-reference/cred-api/#cred_save_data
2) In this PHP function, you can get current post information + custom field values:
https://developer.wordpress.org/reference/functions/get_post/
https://developer.wordpress.org/reference/functions/get_post_meta/
And follow Google documents to export above values into Google sheet:
hidden link
Well, to hard for me. I'm not programmer, but thank you.