Forum Replies Created

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • in reply to: Export / Move Form #29404
    justdiveworld
    Participant

    You are an absolute star Ally, thank you! Will keep you posted

    in reply to: Mailchimp not receiving form data #29342
    justdiveworld
    Participant

    Hi

    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

    in reply to: MailChimp Address Import #29195
    justdiveworld
    Participant

    Perfect Ally, works like a charm. Thank you.

    in reply to: MailChimp Address Import #29177
    justdiveworld
    Participant

    Thanks 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.
    in reply to: Append Selection Across Pages #29165
    justdiveworld
    Participant

    Thanks 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.

    in reply to: Calculate Age from Date of Birth #29164
    justdiveworld
    Participant

    Thanks 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.

    in reply to: Calculate Age from Date of Birth #29154
    justdiveworld
    Participant

    Hi 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.
    in reply to: Append Selection Across Pages #29153
    justdiveworld
    Participant

    Hi 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

    in reply to: Append Selection Across Pages #29150
    justdiveworld
    Participant

    Hi 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 field

    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');
    });
    });

    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

    in reply to: Calculate Age from Date of Birth #29149
    justdiveworld
    Participant

    Hi 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 field

    I 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

    in reply to: Confirm Password #29148
    justdiveworld
    Participant

    That’s awesome, thank you!

    in reply to: Change Colours – Radio Buttons #29137
    justdiveworld
    Participant

    Thanks Ally!

    in reply to: Change Default Green Colour in all Forms #29136
    justdiveworld
    Participant

    Thank you Ally, that’s awaesome!

Viewing 13 posts - 1 through 13 (of 13 total)
Be inspired. © 2025 ThemeCatcher Ltd. 20-22 Wenlock Road, London, England, N1 7GU | Company No. 08120384 | Built with React | Privacy Policy