Mayur Prajapati
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form to Any API] Sending File Inputs as form-dataHello @mariusiscoding
Thanks for choosing our plugin.
Our plugin does not work with file input
Rest you can use any type of input it will work fine
Thanks!Forum: Plugins
In reply to: [Contact Form to Any API] JSON structure from Contact Form 7Hello @kristinearcangel
Thanks for choosing our plugin. We are happy to help you on it.
The requirement you mention required customization in our plugin
Please contact with [email protected] or Skype: itpathsolutions
We will establish a connection and will share updated version with you to achieve your requirements.
Looking forward from you to hear back.
Thanks!Forum: Plugins
In reply to: [Contact Form to Any API] Trying to send data in a string formatHello @rankmyweb
Thanks for using our plugin
We are happy to help you
Please share your API configuration screenshot Or details with us at [email protected] so we will check and update you.Thanks
Forum: Plugins
In reply to: [Contact Form to Any API] New I18N Issue (Based on 1.0.5)Hello Alex
Please update to our latest version
We have fixed this issue
Thanks ??Forum: Plugins
In reply to: [Contact Form to Any API] API not postingHello @clintonlee83
Thanks for using our plugin
We review your API doc and noticed that your API required customize format of JSON and at the moment our plugin works with specific format only
Very soon will release an updated version of our plugin that will work with any JSON formatThanks
Forum: Plugins
In reply to: [Contact Form to Any API] in log table log field is emptyHello @bharti9107
Thanks for using our plugin
We are happy to help you
Please share your API configuration screenshot Or details with us at [email protected] so we will check and update you.
ThanksForum: Plugins
In reply to: [Contact Form to Any API] I18n IssuesHello @alexclassroom
Please update to our latest version 1.0.4
ThanksForum: Plugins
In reply to: [Contact Form to Any API] I18n IssuesHello @alexclassroom
This is Amazing Thank you so much ??
I’ll update the plugin shortly with your changes let me know if there’s anything else
Thank you
Forum: Plugins
In reply to: [Contact Form to Any API] Plugin adds itself “?” to the first mapped fieldHello @wordpresslover7
Thanks for using our plugin
Please update to latest version We have fixed the issue in our latest release.Thanks for letting us know the issue.
We would be happy if you rate our plugin & Keep supporting usThank You
Forum: Plugins
In reply to: [Any Post Slider] PHP error when I add slider in the page.Thanks for using our plugin
Please Update to Latest version we have fixed this bugThanks
Forum: Plugins
In reply to: [Contact form 7 TO API] Form fields are not savedFound 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.phpfind 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