zaus
Forum Replies Created
-
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Formatting field output?No idea, sorry. But I don’t think so. Check their support.
Do you think your typical use case will have a high percentage of international formats? You can always write a filter to check and add the ‘1’ if you’re not adverse to coding.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Does the plugin have this particular Feature?Maybe – what’s that? Depending on how complex the xml is you should also use the “Forms 3rdparty Xpost” plugin to turn the submission into xml.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Formatting field output?You can map an extra static value of “1” to the same phone field (place this before the dynamic field mapping), and set the multiple value separator to a dash. It’ll then concatenate those together, but would probably break anything entered in international format.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] submission to mail chimp problemsOy vey that’s a lot of html…
If I help you can I go on a bikini adventure too? (Sorry, couldn’t resist)
It looks like you’re not mapping existing fields – you can see the case-sensitive field names available from the “post (form)” section of the debug email. Pick the field names containing the values you want to send (in your case, I see
Emailbut no name field) without brackets, and put them in the mapping table with the corresponding MailChimp field.Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Can't get form to POSTYeah that’s a common difficulty – it’s tough to figure which ones should be marked which. Let me know how I can make it clearer in the admin page or readme.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Custom Integration/DevelopmentSure do. Contact me through my website with details. http://drzaus.com/contact
You’d have to recreate the static html form as a gravity form, then use my plugin to send the submission to a third party; might not even need custom hooks. It might be easier for you to use Contact Form 7, since you can basically copy the original html and just replace the inputs with cf7 shortcodes.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Can't get form to POSTYou’ve checked “is value” for all of them, so it’s sending the field name as given rather than performing a map of the values.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Do all fields need to be mapped?Glad it worked out! Thanks for the love.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] CF7 not to Salesforce leads not createdYou could also just include the oid as a static value – put the value you want to send in the “form field” column and check the “is value” column, with “oid” in the 3rd-party column like normal. Then you don’t have to expose it as a hidden field.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Forms3rdPartyIntegration_service CF7 AjaxI’ve had problems before trying to inject stuff programmatically (ie via hooks) to onsentok, I don’t think there’s a way to do it (could be wrong, maybe he added one since I last looked). If you’re just looking to redirect, you might be able to insert html (ie script tags) into the $refs[‘message’] instead, I don’t remember if it sanitizes.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Do all fields need to be mapped?You don’t have to map everything.
But, you’ve put brackets around the
srcfields — e.g.[input_4]rather thaninput_4. I can see why you did it, but that’s just how array keys are printed in php.Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Conditional Logic Feature?@humanatv — you’re asking for something different, please start a new thread.
But you’d have to use theresponse_bypasstrick so you can make your ownwp_remote_postcall (see https://github.com/zaus/forms-3rdparty-integration/blob/master/forms-3rdparty-integration.php#L478)Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Send data only if checkbox is set@phxt You didn’t map the
subscribefield, so it’s never getting passed to the hook. You can see this by comparing the “Post (Form)” section, which hassubscribe, to the “Post (Service)” section, which does not. Since your hook will set the bypass whensubscribeisn’t there, it’s never making the remote post as you pointed out.Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] CF7 to InsightlyI assume so — their API docs state it’s all REST-ful requests, only caveat is the authentication header (see example).
You could either write a hook to attach the header, or base-64 your api key somewhere and include it statically with the Forms-3rdparty-Xpost extension.
Let us know if you get anywhere with that, or need more help.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Send data only if checkbox is setDid you see my correction — the hook should instead return something like
$post_args['response_bypass'] = array('body' => 'OKAY', 'response' => array('code' => 200));Can you paste the debug email here?