Title: zaus's Replies | WordPress.org

---

# zaus

  [  ](https://wordpress.org/support/users/zaus/)

 *   [Profile](https://wordpress.org/support/users/zaus/)
 *   [Topics Started](https://wordpress.org/support/users/zaus/topics/)
 *   [Replies Created](https://wordpress.org/support/users/zaus/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/zaus/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/zaus/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/zaus/engagements/)
 *   [Favorites](https://wordpress.org/support/users/zaus/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 495 total)

1 [2](https://wordpress.org/support/users/zaus/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/zaus/replies/page/3/?output_format=md) …
[31](https://wordpress.org/support/users/zaus/replies/page/31/?output_format=md)
[32](https://wordpress.org/support/users/zaus/replies/page/32/?output_format=md)
[33](https://wordpress.org/support/users/zaus/replies/page/33/?output_format=md)
[→](https://wordpress.org/support/users/zaus/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forms: 3rd-Party Integration] Send remote_ip as field value](https://wordpress.org/support/topic/send-remote_ip-as-field-value/)
 *  Plugin Author [zaus](https://wordpress.org/support/users/zaus/)
 * (@zaus)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/send-remote_ip-as-field-value/#post-14675740)
 * Does it show up in the debug email? That will tell you what’s available to map.
   Otherwise, you might want to try my other add-on [Dynamic Fields](https://wordpress.org/plugins/forms-3rdparty-dynamic-fields/)
   which includes a special mapping for ip. You can always write a simple hook to
   include custom info.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forms: 3rd-Party Integration] cURL error 60](https://wordpress.org/support/topic/curl-error-60-11/)
 *  Plugin Author [zaus](https://wordpress.org/support/users/zaus/)
 * (@zaus)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/curl-error-60-11/#post-12941297)
 * As far as I can tell from some internet research, it’s either that the destination(
   your CRM) has an expired certificate, or your origination (your websites) either
   don’t recognize the destination authority (because it’s been invalidated or is
   no longer trustworthy due to excessive fraud reports against the issuer) or I
   saw a mention that it has something to do with an older version of PHP.
 * You could try entering the CRM url (or some part of it, like a wsdl) in a browser
   window to check what Chrome thinks of their certificate. Can you share which 
   CRM you’re using?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forms: 3rd-Party Integration] Spam triggering 3rd Party even though Askimet rejects](https://wordpress.org/support/topic/spam-triggering-3rd-party-even-though-askimet-rejects/)
 *  Plugin Author [zaus](https://wordpress.org/support/users/zaus/)
 * (@zaus)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/spam-triggering-3rd-party-even-though-askimet-rejects/#post-12242789)
 * My plugin hooks to [`gform_pre_submission_filter`](https://plugins.trac.wordpress.org/browser/forms-3rdparty-integration/trunk/plugins/gravityforms.php#L23)
   with the [default priority](https://plugins.trac.wordpress.org/browser/forms-3rdparty-integration/trunk/plugins/fplugin_base.php#L135).
   Assuming Akismet etc are using the same hook, you could try changing that line
   to have a really high sequence — if that works I’ll update my plugin accordingly.
   Otherwise we’d need to figure out how the spam plugins hook to GF.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forms: 3rd-Party Integration] Service drop down bars not opening to edit](https://wordpress.org/support/topic/service-drop-down-bars-not-opening-to-edit/)
 *  Plugin Author [zaus](https://wordpress.org/support/users/zaus/)
 * (@zaus)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/service-drop-down-bars-not-opening-to-edit/#post-12204540)
 * To diagnose the problem, open your browser Dev Tools (usually F12, or right-click
   anywhere and choose “Inspect”) and choose the Console tab, then refresh the page
   and look for any red javascript errors. There might be a conflict with another
   plugin, and make sure you’re using the most recent version of mine.
 * The info is saved to a wp setting, and it sounds like uninstalling isn’t deleting
   the setting. Could you try my “Forms: 3rd party migrate” plugin? You’ll get a
   Tools menu option to export the raw settings (I hope you speak json), but you
   should also be able to save an empty value to start fresh.
 * If you’re still having trouble, send me some screenshots and I’ll see if I can
   figure it out.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forms: 3rd-Party Integration] Error in third party service integration](https://wordpress.org/support/topic/error-in-third-party-service-integration/)
 *  Plugin Author [zaus](https://wordpress.org/support/users/zaus/)
 * (@zaus)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/error-in-third-party-service-integration/#post-11976886)
 * The limit has to do with the database field size (unfortunately the plug-in is
   serializing everything to one wp-setting). No easy way to get around it.
 * However, as I’ve asked before in similar threads, is it possible to reconfigure
   your services to share across forms? As in, register the same endpoint (service)
   and use something dynamic in the submission (like a hidden field) to route it
   appropriately? For example, if you need to connect one form to [https://pardot.forms/submit?userkey=xyz&formid=123](https://pardot.forms/submit?userkey=xyz&formid=123)
   and another to …submit?userkey=xyz&formid=456, then you might be able to set 
   up the same service to …submit?userkey=xyz and map a hidden field from each form
   to `formid`. Also note that any mapped fields that don’t appear in a submission
   aren’t sent, so you can set up one service with the fields from multiple forms(
   assuming they share a similar endpoint). Or if you’ve misunderstood how field
   mapping works and are using unique field IDs rather than reusing labels to send
   the same data from different forms, you can consolidate services.
 * I’d be happy to help, and am a little afraid to ask you to share your configuration(
   from a debug email or migration plugin output) – please scrub sensitive info 
   before sharing.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forms: 3rd-Party Integration] separator not beeing setup therfore cant sent multiple values](https://wordpress.org/support/topic/separator-not-beeing-setup-therfore-cant-sent-multiple-values/)
 *  Plugin Author [zaus](https://wordpress.org/support/users/zaus/)
 * (@zaus)
 * [6 years, 8 months ago](https://wordpress.org/support/topic/separator-not-beeing-setup-therfore-cant-sent-multiple-values/#post-11910967)
 * … Sorry, got cut off.
 * What value are you trying to use as the delimiter?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forms: 3rd-Party Integration] separator not beeing setup therfore cant sent multiple values](https://wordpress.org/support/topic/separator-not-beeing-setup-therfore-cant-sent-multiple-values/)
 *  Plugin Author [zaus](https://wordpress.org/support/users/zaus/)
 * (@zaus)
 * [6 years, 8 months ago](https://wordpress.org/support/topic/separator-not-beeing-setup-therfore-cant-sent-multiple-values/#post-11910965)
 * I’m not sure what the problem is — do you mean the multi-value delimiter? That’s
   only applicable when you are mapping more than one field to the same destination
   value, and it doesn’t look like you are, so it shouldn’t matter?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forms: 3rd-Party Integration] cannot add new services and fields in existing service](https://wordpress.org/support/topic/cannot-add-services-and-fields-in-existing-service/)
 *  Plugin Author [zaus](https://wordpress.org/support/users/zaus/)
 * (@zaus)
 * [6 years, 8 months ago](https://wordpress.org/support/topic/cannot-add-services-and-fields-in-existing-service/#post-11897373)
 * Yes, sorry, it’s a known “bug” due to how the plugin saves the configuration (
   to the same WP setting), which as everyone has surmised has a length restriction.
 * I’ve generally noticed that when users have that many services configured it’s
   possible to consolidate many of them. In some cases where the forms are basically
   the same, using dynamic values (e.g. from the query-string or hidden fields in
   the form itself) can allow you to reuse the same service across forms. Also, 
   the plugin will only map fields that are present so you could add mappings for
   several forms in one service.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forms: 3rd-Party Integration] Gravity forms Name fields not being sent](https://wordpress.org/support/topic/gravity-forms-name-fields-not-being-sent/)
 *  Plugin Author [zaus](https://wordpress.org/support/users/zaus/)
 * (@zaus)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/gravity-forms-name-fields-not-being-sent/#post-11275760)
 * Check the section of the debug email with the actual form inputs, as GF probably
   uses a slightly different format for nested fields.
 * See #2 on the sticky help thread for where to look
    [https://wordpress.org/support/topic/its-not-sending-data-help-read-this-first/](https://wordpress.org/support/topic/its-not-sending-data-help-read-this-first/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forms: 3rd-Party Integration] Redirect to Submission URL after Posting Data?](https://wordpress.org/support/topic/redirect-to-submission-url-after-posting-data/)
 *  Plugin Author [zaus](https://wordpress.org/support/users/zaus/)
 * (@zaus)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/redirect-to-submission-url-after-posting-data/#post-11275722)
 * Your best option is to follow [the hook to change the confirmation message](https://wordpress.org/plugins/forms-3rdparty-integration/#how%20do%20i%20show%20a%20custom%20message%20on%20the%20confirmation%20screen%3F)
   and use a JavaScript redirect.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forms: 3rd-Party Integration] Error sending to Pardot](https://wordpress.org/support/topic/error-sending-to-pardot/)
 *  Plugin Author [zaus](https://wordpress.org/support/users/zaus/)
 * (@zaus)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/error-sending-to-pardot/#post-11267006)
 * Sorry, there’s like a million requests for help with this issue on the forum,
   and as far as I can tell pardot just doesn’t like how WP sends remote requests(
   or vice versa). I haven’t come across a definitive answer, but the closest was
   to hook my plugin to use the ‘request_bypass’ and use something other than `wp_remote_post`(
   like `curl`) which gives you more control over sending.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forms: 3rd-Party Integration] GF Multiple Fields to Same 3rd-party Field](https://wordpress.org/support/topic/gf-multiple-fields-to-same-3rd-party-field/)
 *  Plugin Author [zaus](https://wordpress.org/support/users/zaus/)
 * (@zaus)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/gf-multiple-fields-to-same-3rd-party-field/#post-11266981)
 * It might depend on how you’ve set up GF? I thought there was a way with conditional
   validation to omit some fields instead of just hiding them.
 * But if not, you can hook to `Forms3rdPartyIntegration_service_filter_post` to
   alter the post submission array. I’d foreach the `$post` array and [`trim`](http://php.net/manual/en/function.trim.php)
   the values of spaces and commas. Might be worth an add-on plugin; if you make
   it I’ll be happy to link it from this one’s faq.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forms: 3rd-Party Integration] Contact Form 7 integration unstable](https://wordpress.org/support/topic/contact-form-7-integration-unstable/)
 *  Plugin Author [zaus](https://wordpress.org/support/users/zaus/)
 * (@zaus)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/contact-form-7-integration-unstable/#post-11262849)
 * You’ll want my hook `...service_filter_args` to return `['response_bypass']`
 * [https://github.com/zaus/forms-3rdparty-integration/blob/master/forms-3rdparty-integration.php#L608](https://github.com/zaus/forms-3rdparty-integration/blob/master/forms-3rdparty-integration.php#L608)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forms: 3rd-Party Integration] Contact Form 7 integration unstable](https://wordpress.org/support/topic/contact-form-7-integration-unstable/)
 *  Plugin Author [zaus](https://wordpress.org/support/users/zaus/)
 * (@zaus)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/contact-form-7-integration-unstable/#post-11262818)
 * As far as I’ve ever been able to figure out it’s a pardot thing, or a basic incompatibility
   with how WP makes http requests. Lots of people have complained about pardot 
   integrations.
 * The only thing I can suggest is to use a hook to override the plugin’s sending
   mechanism to curl or something else more explicit so you can try different options.
   I think there are also some WP hooks to change how `wp_remote_post` works.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forms: 3rd-Party Integration] form or custom field input to generate 3rd-party shortcode](https://wordpress.org/support/topic/form-or-custom-field-input-to-generate-3rd-party-shortcode/)
 *  Plugin Author [zaus](https://wordpress.org/support/users/zaus/)
 * (@zaus)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/form-or-custom-field-input-to-generate-3rd-party-shortcode/#post-11070023)
 * You might also be able to use an initial GF form to redirect to another GF form(
   with url parameters from the initial submission) with dynamic values or conditional
   field logic? Basically a two-part form, and entirely with GF plugins (or maybe
   the second part with Acf too)? I’m still not entirely clear on what you’re trying
   to do. But if you figure it out I’d be curious to know your solution.
    -  This reply was modified 7 years, 4 months ago by [zaus](https://wordpress.org/support/users/zaus/).

Viewing 15 replies - 1 through 15 (of 495 total)

1 [2](https://wordpress.org/support/users/zaus/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/zaus/replies/page/3/?output_format=md) …
[31](https://wordpress.org/support/users/zaus/replies/page/31/?output_format=md)
[32](https://wordpress.org/support/users/zaus/replies/page/32/?output_format=md)
[33](https://wordpress.org/support/users/zaus/replies/page/33/?output_format=md)
[→](https://wordpress.org/support/users/zaus/replies/page/2/?output_format=md)