Support » Plugin: CF7 to Webhook » No data sent to zapier
No data sent to zapier
-
hello. i have had CF7 working for a while and i just added your plugin.. i created a new basic form, a new zapier webhook.
no form data is being sent to Zapier through the webhook though.
your-name, your-email, etc are all blank in zapier when i test it.
please help.
-
Hi.
Did you followed all the configuration step?
i think so… tried to do a very simple setup to test it.
http://jarretgabel.com/form.png
http://jarretgabel.com/setup.png
http://jarretgabel.com/zapier.pngwhen i switch to a raw webhook, it get more data, just not the form data.
Nice.
Thanks for answering.
So… the webhook has been sent to Zapier.Would you please retry with a new webhook from https://webhook.site ?
OK.
What is the CF7 and CF7 To Webhook version?
Are you using any other plugin it may be changing CF7 or POST (form data)?
Is that form public?
-
This reply was modified 2 years, 8 months ago by
Mário Valney.
CF7 – Version 5.2.2
CF7 to Webhook – Version 2.2.2no other plugins interacting with the forms that i know of… though we do have AutoPilot installed.
url is here
https://goldskysecurity.com/iso-27001-certification-program/oh yeah the form at the very bottom, the un-styled form is the one i’m testing..
i just connected the test webhook on the homepage form just in case it was a page-specific issue… but same results.
http://jarretgabel.com/homepage-form.png
form at the bottom of this:
https://goldskysecurity.com/the payload for the homepage form seems to be sending correctly. here’s a snapshot of the form data in the request.
http://jarretgabel.com/payload.png
and here’s the 200 showing it sent correctly.
http://jarretgabel.com/200.png-
This reply was modified 2 years, 8 months ago by
jarretgabel.
I’m not able to access
goldskysecurity
.
But I don’t think it should be a problem.Are you familiar with code?
I’m thinking about start to check value on plugin flow.thanks for the reply. yup ive very familiar with code. i’m the the web developer helping my client build his forms out.
you should be able to access the main domain and homepage form at the url below. that’s public facing and the form has the webhook enabled.
https://goldskysecurity.com/this is interesting too.
i added a special tag to the form and when it’s submitted IT DOES send the special tags… you can see in the screenshot from webhook.site that the value “HOME” does get passed through properly. though none of the other fields go through.
http://jarretgabel.com/home-setting.png
http://jarretgabel.com/home-post-title.pngNice! So let’s go:
Would please go to
cf7-to-zapier/trunk/modules/cf7/class-module-cf7.php
and check:1 – We have value for any tag after line 275.
Something like that:
// Regular Tags $value = ( ! empty( $_POST[ $tag->name ] ) ) ? $_POST[ $tag->name ] : ''; print_r($value);
2 – We have
$data
before the end ofget_data_from_contact_form
method.print_r($data); exit; /** * You can filter data retrieved from Contact Form tags with 'ctz_get_data_from_contact_form' * * @param $data Array 'field => data' * @param $contact_form ContactForm obj from 'wpcf7_mail_sent' action */ return apply_filters( 'ctz_get_data_from_contact_form', $data, $contact_form );
(I know it’s not the best way haha but it’s easier)
Now, after submiting the for you can see the value on
/feedback
request made but CF7 on Browser Inspector / Console.Still not loading
goldskysecurity.com
here..
Anyway.. no problem. -
This reply was modified 2 years, 8 months ago by
- The topic ‘No data sent to zapier’ is closed to new replies.