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://wordpress.org/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
This plugin is not maintained for the past 2 years
You can check out
https://wordpress.org/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 – ambientearth77@gmail.com
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.