@mountainmarketing
Can you please send us the screenshot of the debug log from the Google Sheet settings page (your-domain/wp-admin/admin.php?page=wpcf7-google-sheet-config).
It seems that you are not successfully authorized with the google sheet or you have entered wrong sheet name/sheet tab name
Thanks
Abdullah!
Hey there, I double checked and rechecked everything was done right. I just ended up using a similar plugin that asked for the same steps and worked. Thanks for your response though! Its very much appreciated!
i have similar problem.
it shots when i try submit form without setup sheet-name and sheet-tab-name for that form
then I do a little investigation and find out that in file ‘./includes/class-gs-service.php‘, in public function cf7_save_to_google_sheets(), on line 83 array $form_data get this data
(
[0] => Array
(
[sheet-name] =>
[sheet-tab-name] =>
)
)
and then on line 87 we have isset() = true in this case,
so i replace isset() with !empty().
old 87 line:
if ( $submission && isset( $form_data[0]['sheet-name'] ) && isset( $form_data[0]['sheet-tab-name'] ) ) {
and new one:
if ( $submission && !empty( $form_data[0]['sheet-name'] ) && !empty( $form_data[0]['sheet-tab-name'] ) ) {
and all work perfect now