Forum Replies Created
- AuthorPosts
justdiveworld
ParticipantYou are an absolute star Ally, thank you! Will keep you posted
justdiveworld
ParticipantHi
Have you setup/created the integration? (menu: QuForms/Mailchimp/Integration)
Have you enabled integration? (menu: QuForms/Mailchimp/Settings)
Have you linked the merge fields? (QuForms/Mailchimp/Integration/Merge Fields)
Have you selected a list to send it to? (QuForms/Mailchimp/Integration/Lists
Have you entered you Mailchimp API key? (QuForms/Mailchimp/Setting)
Generally after installing the plugin these are the only things you need to setup.
PS> I’m not the support guys, just offering advice from when I did it 🙂
Denis
justdiveworld
ParticipantPerfect Ally, works like a charm. Thank you.
justdiveworld
ParticipantThanks a million Ally.
Where do I find the Mailchimp merge tag for the address field?
And how would I complete the code for the Address Field? See attached picture.
Thanks again.
Attachments:
You must be logged in to view attached files.justdiveworld
ParticipantThanks Ally,
I was viewing it in preview mode and not on the live site. It works on the live site.
Thanks again for the help.
justdiveworld
ParticipantThanks Ally,
I was viewing it in preview mode and not on the live site. It works on the live site.
Thanks again for the help.
justdiveworld
ParticipantHi Ally,
I have inserted the code you mentioned, though I am using a text box and not a hidden field. Nonetheless it doesn’t seem to be working.
I have noticed when copying the code into Setting/Custom CSS &JS/Custom JavaScript section that that the code isn’t as well aligned as in your code for some reason. If I paste it into a text file it is aligned.
I have attached a screenshot of it. Not sure if that is an issue, but let me know.
If you need access to this to see, drop me a private message so I can send you access details.
Attachments:
You must be logged in to view attached files.justdiveworld
ParticipantHi Ally,
I have done as your instructed and used the code from this post and appended 1_3 and 1_4 with the relevant values however it doesn’t seem to work. Any ideas?
jQuery(function ($) {
var $radio1 = $(‘.quform-field-3_4’),
$radio2 = $(‘.quform-field-3_179’);$radio1.click(function () {
var value = this.value;$radio2.filter(function () {
return this.value === value;
}).prop(‘checked’, true).triggerHandler(‘change’);
});$radio2.click(function () {
var value = this.value;$radio1.filter(function () {
return this.value === value;
}).prop(‘checked’, true).triggerHandler(‘change’);
});
});Thanks, Denis
justdiveworld
ParticipantHi Ally,
I have tried exactly as you stated below, but when I save it says “An error occurred saving the settings. Ajax error”.
3_4 is the first radio button field
3_179 is the second radio button fieldjQuery(function ($) {
var $radio1 = $('.quform-field-3_4'),
$radio2 = $('.quform-field-3_179');$radio1.click(function () {
var value = this.value;$radio2.filter(function () {
return this.value === value;
}).prop('checked', true).triggerHandler('change');
});$radio2.click(function () {
var value = this.value;$radio1.filter(function () {
return this.value === value;
}).prop('checked', true).triggerHandler('change');
});
});Out of curiosity, not being a coder but trying to learn. I notice you use “#039” everywhere. What does that refer too?
Thank you again.
Denis
justdiveworld
ParticipantHi Ally,
Thanks a million.
I need it in a text field and not hidden field, would you change $hiddenField to $textField to look like the code below?
3_203 is our date field
3_110 is our text fieldI haven’t been able to get it to work:
jQuery(function ($) {
var $dateField = $('.quform-field-3_103'),
$textField = $('.quform-field-3_110'),
datePicker = $dateField.data('kendoDatePicker'),
options = $dateField.data('options') || {},
culture = options.locale || 'en-US',
format;if (window.kendo && datePicker) {
format = options.format ? options.format : kendo.getCulture(options.locale).calendars.standard.patterns.d;$dateField.on('keyup blur', onDateChange);
datePicker.bind('change', onDateChange);
}function onDateChange() {
var value = $dateField.val(),
age = '';if (Quform.isNonEmptyString(value)) {
var date = kendo.parseDate(value, format, culture);if (date !== null) {
age = getAge(date);
}
}$textField.val(age).change();
}function getAge(birthDate) {
var today = new Date(),
age = today.getFullYear() – birthDate.getFullYear(),
m = today.getMonth() – birthDate.getMonth();if (m < 0 || (m === 0 && today.getDate() < birthDate.getDate())) {
age–;
}return age;
}
});Thanks a million,
Denis
justdiveworld
ParticipantThat’s awesome, thank you!
justdiveworld
ParticipantThanks Ally!
justdiveworld
ParticipantThank you Ally, that’s awaesome!
- AuthorPosts