zaus
Forum Replies Created
-
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Submission URL for MailChimpIn short: no — http://kb.mailchimp.com/lists/signup-forms/the-double-opt-in-process
Our signup forms require the double opt-in process, so there’s not a way to turn off or otherwise disable the Opt-In Confirmation Email. If you’d like more control over your opt-in process, you can use a 3rd party integration like Wufoo’s or host your own forms and use the MailChimp API to pass subscriber information back to your list.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Not sure about my hookAwesome, glad it worked. You might want a final
return $use_this_form;just in case.Resolving.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Not sure about my hookAh, there it is —
subscribeis an array (weird!). You’ll have to checkif($submission['subscribe'][0]=='Yes'), and probably wrap that with someissetif you get php warnings (when it’s not there).Also, if you’re not planning on sending it, don’t map it. It’ll still be part of the
$submissionfor your hook.Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Not sure about my hook$sidcomes from the numeric index of the service (from the array) corresponding to its order on the page; I can’t remember if it starts at 0 or 1 — https://github.com/zaus/forms-3rdparty-integration/blob/master/forms-3rdparty-integration.php#L422What’s your debug email look like?
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Generic ExceptionMy guess is you’re not mapping the ’email’ field correctly – note the case in the “post form” section, and thus there is no email in the “post service” section because you have it looking for ‘Email’.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] CF7 Ajax ErrorThat’s really weird. Usually the form spinner only sits around if there is a php code error that dumps some weird output to the Ajax form submission call, which would indicate a broken plugin (not necessarily mine, but could be a conflict). Any chance you can “unfix” your form and send me the debug email and the Developer Tools console output?
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Not sure about my hookWhat does the form post section of the debug email show? Usually unchecked fields aren’t part of the submission, so your negative would never get triggered, and the default
$use_submissionis true.You’d probably want to check for yes and return $use…, otherwise return false.
And if you have multiple services you’d want to wrap that in a check for the right $sid.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Submission URL for MailChimpHave you tried the steps here? http://kb.mailchimp.com/lists/signup-forms/host-your-own-signup-forms
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] CF7 Ajax ErrorHmm…can you post the (sanitized) debug email?
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Feature RequestYou can kinda do this with the forms third party migrate plugin https://wordpress.org/plugins/forms-3rdparty-migrate/. Copy and paste sections, then refresh the admin page. There’s also a line of JavaScript that clears the section after adding a new one, I think there’s a github issue mentioning it.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] submission to mail chimp problemsresolving; looks like a double-post with https://wordpress.org/support/topic/submission-to-mail-chimp-problems-1
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Can't enable debug modeSorry, I just introduced that bug with the last update (didn’t notice that section was also affected).
Try the latest version 1.6.4.1 for a quick fix.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] submission to mail chimp problemsUse the input
namerather thanid, so in the example you just posted ‘src’ should be “email-717” and ‘3rd’ should be “EMAIL”.If that doesn’t work might also need the ‘submit’ value of “Subscribe” too.
Re: the “1” still appearing, is fine – that’s just the array index if the mapping entry, not the ‘val’ key.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Value not send to 3rd-partyThat’s weird. I can’t eyeball anything wrong, but is there any whitespace (spaces, tabs, invalid characters) in the mapping values? Could be a bad copy/paste.
Have you tried changing the mapping and field names, or trying to have it submit a different value than 1?
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] submission to mail chimp problems“Array” just means it’s a list of values, like the rows of a spreadsheet – the stuff on the left are keys/indexes (i.e. columns).
You’ve still got a couple mistakes:
[val] => 1 <– means you’ve incorrectly checked the checkbox “is value”, which means it’s going to send whatever you’re entered in thesrccolumn *as a value*, which you can see in the “post (submission)” array. So uncheck this
[lbl] => The email address
[src] => Enter your email. <– should beEmail, the same as the key of the array in the “post (form)” array that you want to send
[3rd] => mce-EMAIL <– this is what mailchimp will see the mapped value under; is this the correct field name they expect?