• Resolved chocolata

    (@chocolata)


    Hi,

    We’re encountering the same issues as mentioned in the locked topic here https://www.ads-software.com/support/topic/form-is-not-saved/

    The contents of the input fields are not stored. After saving they are empty again, no matter the contents.

    We tried updating the max_input_vars to 10000 as requested, but this has no effect.

    We’re running a WordPress site with the core and all plugins up-to-date on PHP 7.4.26, MariaDB 10.5.13.

    Can you please provide a solution, as essential business processes of our client are impeded.

    Thanks in advance for looking into this.

Viewing 10 replies - 1 through 10 (of 10 total)
  • I’m also having this problem. Since WordPress Update.

    Hello, same issue. Api integration settings have been wiped out. When the setting are saved again – although message says successfully saved – the fields appear empty.

    Urgent attention needed for a fix please!!

    I am encountering this issue as well. This was my first night finding this plugin and thought there was something that I was doing wrong! ??

    Hi guys the problem is on contact form 7, roll back to 5.5.1, here′s the link, scroll down to the bottom of the page and choose that version.
    https://www.ads-software.com/plugins/contact-form-7/advanced/

    On wordpress install the version(5.5.1) it will say that there′s already the newer one, nevertheless proceed to this version.

    There you go, now you can save!

    PS: Disable automatic updates until this plugin is updated!

    Happy coding!
    Thanks to the developer it′s an awesome plugin, I′m just here helping a little bit.

    JC

    Any update on this API Integration

    Plugin Author Qube One ltd

    (@querysolutions)

    This plugin is not maintained for the past 2 years
    You can check out
    https://www.ads-software.com/plugins/wpcf7-redirect/

    I found another plugin which worked for me. It was mentioned in some forum but I don’t have the link to it. I’m sharing plugin author’s email – [email protected]

    Found The Issue
    Issue is with the latest version of CF7
    To Fix It
    Open plugin directory go to “include” folder open -> class-cf7-api-admin.php

    find function “wpcf7_integrations”

    first four lines

    $wpcf7_api_data = $post->prop( ‘wpcf7_api_data’ );
    $wpcf7_api_data_map = $post->prop( ‘wpcf7_api_data_map’ );
    $wpcf7_api_data_template = $post->prop( ‘template’ );
    $wpcf7_api_json_data_template = $post->prop( ‘json_template’ );

    Replace this 4 lines with

    $wpcf7 = WPCF7_ContactForm::get_current();
    $form_id = $wpcf7->id();
    $wpcf7_api_data = get_post_meta($form_id,’_wpcf7_api_data’)[0];
    $wpcf7_api_data_map = get_post_meta($form_id,’_wpcf7_api_data_map’)[0];
    $wpcf7_api_data_template = get_post_meta($form_id,’template’);
    $wpcf7_api_json_data_template = get_post_meta($form_id,’json_template’);

    And Your Done

    Plugin will work now

    Bruh your code broke the plugin, a fatal error.

    aight it saves the data but the latest version is doing some wtf things.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Form fields are not saved’ is closed to new replies.