zaus
Forum Replies Created
-
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Can't save a new serviceGlad I could help!
Technically the only limit to the associations between service and form is the length of the serialized wp setting same as before. But since you’re drastically reducing the rest of the details, you should have a lot more space. So, I wouldn’t worry about that part.
But please let me know how many you end up with, I’m curious 🙂
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Can't save a new serviceIf the mapping field isn’t present in the submission, it won’t get sent [source], so you could map
form1-textbox-a,form1-textbox-b,form2-textbox-c,form2-textbox-dall in the same service and only ‘a’ and ‘b’ would show up when form1 is submitted, while ‘c’ and ‘d’ would show when form2 is submitted.If your lead is form-specific, you could add it as a hidden field (or any non-editable field you can hide with css) to the form itself and just map the lead field (rather than provide it as a value in the mapping setup).
If I ever have time (v2, see here and here) I had planned on revamping how the services are saved to address this issue.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Conditional Logic for submit to 3rd party?Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Can't save a new serviceDid you say you have configured 36 other 3rd party services with this plugin? Wow.
But I’m pretty sure that’s why adding the 37th fails – the entire configuration is saved to one wp setting, which has a length limit. You’re running into that limit, so it’s truncating the last entry.
There’s not really a fix, but would it be possible to reuse services across forms? You can select more than one form per service by shift-clicking each form name in the drop down.
Have you tried the suggestion under “How do I show a custom message on the confirmation screen?” on https://wordpress.org/plugins/forms-3rdparty-integration/faq/?
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Can't connect CF7 to third party pluginResolving, duplicate post https://wordpress.org/support/topic/cant-connect-cf7-to-third-party-plugin-1?replies=1
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Contact form to Zurmo@jtribue You can contact me for consultation through my website if you need help with custom integration.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Can't connect CF7 to third party pluginFirst, confirm you’re using the correct (i.e. latest) versions of all plugins — fairly often I’ve heard from people using either an old version of CF7 or an old version of my plugin; there was a major change to CF7 a while ago that required I update my plugin accordingly so you need to use the newer versions of both.
After that, open the browser developer tools (usually F12) and go to the sources/console tab to see if there are any Javascript errors both on page load and when you submit the form. Then, check the Network tab when you submit the form — you should see a new POST entry, and you can see the response. If it looks weird (i.e. not a JSON success response), then something server-side is broken.
If it’s something server side, you can try enabling WP_DEBUG and WP_DEBUG_LOG via your
wp-config.phpfile and check thewp-contents/debug.logfile to see more info about what broke.Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Send file to the 3rd Party ServiceCheck out this thread for more information on a possible solution: https://github.com/zaus/forms-3rdparty-integration/issues/40
I’m not exactly sure how cf7 handles uploads, but if that name corresponds to a file in the wp_upload folder (or any standard location, really) you might be able to just turn it into a link to download instead.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] CF7-3rdParty Integration Failure: Service 1That’s a question for zoho. Please contact me through my website if you’re interested in hiring me for custom integrations.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] CF7-3rdParty Integration Failure: Service 1I think you’re using an old version of my plugin because you don’t see anything in the form post section.
Also you’ve checked “is value”, which won’t map the form post, but instead send the text you’ve entered in the admin configuration.
You’re also expecting the service to return something with word “sucess” in it, as you’ve specific that in the ‘success clause’ setting.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] More than 1 CF7 value to 1 3rd party fieldIn the faq:
I need to submit multiple values as…
By default, if more than one value appears in the post request for the same field/key, they will be joined by the ‘separator’ value like &post-values=a,b,c.
However, if you use [] as the separator it will instead create multiple keys like &post-values[]=a&post-values[]=b&….
Use [#] to retain the numerical index: &post-values[0]=a&post-values[1]=b&…Although now that I think of it I might not have exposed a setting to customize the delimiter. Please check and let me know if it’s working for you.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] More than 1 CF7 value to 1 3rd party fieldHave you tried just putting the same thing in “3rdparty” column? You may also need to fiddle with the “multi value separator” setting.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] 3rdParty Integration FailureForum: Plugins
In reply to: [Forms: 3rd-Party Integration] Salesforce Lead is Not createdWell, you’re posting something to Salesforce. Can you check with them what they’re supposed to receive? Usually the problem is that you’re not sending them all the fields they want, for example you’re only sending ‘last_name’ but they also need ‘first_name’, or something similar