Skip Navigation

[Resolved] Toolset form google sheet connect

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Hong_Kong (GMT+08:00)

This topic contains 2 replies, has 2 voices.

Last updated by Miguel 2 years ago.

Assisted by: Luo Yang.

Author
Posts
#2538175

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

#2538383

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

#2538453

Well, to hard for me. I'm not programmer, but thank you.