• Resolved MountainMarketing

    (@mountainmarketing)


    When I add this plugin to my Contact Form 7 and submit the form it I just get a spinning wheel next to the submit button.

    If I disable the plugin the contact form 7 works just fine.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author westerndeal

    (@westerndeal)

    @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!

    Thread Starter MountainMarketing

    (@mountainmarketing)

    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!

    Plugin Author westerndeal

    (@westerndeal)

    Cheers..

    Thanks!!

    infected9k

    (@infected9k)

    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

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Spinning Circle’ is closed to new replies.