Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • we never resolved it 🙁

    the crm developer ended up monitoring the emails from CF7 then running some kind of macro to populate key leads information. not ideal but it does the job in a roundabout way. works okay but will revisit in time and investigate paid solutions once decision makers can see the cost benefits of better automation. would love to develop a solution ourselves though without data being passed here, there and everywhere.

    – michael

    Hi wacdesign

    I’m in a similar situation. I’ve searched through the forums but can only find references to older versions of CF7. I applied some logic to playing with the js code but my alert kept showing NULL.

    Did you find a solution to your problem?

    For those reading I am looking for an updated solution that won’t reset the form before the on_sent_ok hook. The old solution was to change

    if (1 == data.mailSent) {
    		jQuery(data.into).find('form').resetForm().clearForm();
    		wpcf7ResponseOutput.addClass('wpcf7-mail-sent-ok');
    
    		if (data.onSentOk)
    			jQuery.each(data.onSentOk, function(i, n) { eval(n) });
    	} else {

    to

    if (1 == data.mailSent) {
    		if (data.onSentOk)
    			jQuery.each(data.onSentOk, function(i, n) { eval(n) });
    
    		jQuery(data.into).find('form').resetForm().clearForm();
    		wpcf7ResponseOutput.addClass('wpcf7-mail-sent-ok');
    	} else {

    Hi

    I have a similar need, to push form data to Microsoft CRM Online. I am using ‘Contact Form 7’ and have added the ‘Forms: 3rd-Party Integration’ + ‘Forms-3rdparty Xml Post’ plugins. Examples given talk about Salesforce and Mailchimp but I cannot find instructions on how to integrate with Dynamics CRM.

    Thanks in advance for your response.

    Hi

    Were you able to find a solution?

    – michael

Viewing 4 replies - 1 through 4 (of 4 total)