Chris Hardcastle
August 15, 2013 at 4:53 pm
We are trying to link our EE site to our infusion soft account. We have everything setup up but the data coming into IS is only partial.
Name: Yes
Address: No
City: Yes
State: Yes
Postal Code: Going to wrong spot.
Email: Yes
Telephone: No
Order Information is showing but payment status is not updating when client pays.
I saw a previous post that refereed to field ids. How do I see the field ID’s in EE & IS to see if they align?
Thanks for your assistance.
Dean
August 16, 2013 at 4:34 am
Add New Note to this Reply
Hi Chris,
Take a look at the bottom of this article, https://eventespresso.com/wiki/infusionsoft-addon/ Saving Registration Questions as Standard or Custom Fields, I believe that si waht you a re looking for.
Chris Hardcastle
August 20, 2013 at 9:12 am
Add New Note to this Reply
Thanks for the info. Can you recommend a programer to assist me. This is way outside my comfort zone. I am looking for someone who in good with both EE and IS.
Thanks
Sidney Harrell
August 20, 2013 at 2:23 pm
Add New Note to this Reply
Try adding this to your theme’s functions.php file:
function espresso_infusionsoft_save_extra_fields($attendee_data) {
$clean_attendee_data = array(
'StreetAddress1' => isset($_REQUEST['address']) ? $_REQUEST['address'] : '' ,
'PostalCode' => isset($_REQUEST['zip']) ? $_REQUEST['zip'] : '' ,
'Phone1' => isset($_REQUEST['phone']) ? $_REQUEST['phone'] : ''
);
return array_merge($attendee_data, $clean_attendee_data);
}
add_filter( 'filter_hook_espresso_infusionsoft_extra_attendee_data', 'espresso_infusionsoft_save_extra_fields', 10, 1 );
Chris Hardcastle
August 20, 2013 at 4:09 pm
Add New Note to this Reply
Hi Sidney,
Way out of my comfort zone now. I also have some other work I would like done between EE and IS. Can you recommend someone for us to hire?
Thanks
Chris
Sidney Harrell
August 20, 2013 at 7:44 pm
Add New Note to this Reply
All of the developers on our pros page, https://eventespresso.com/developers/event-espresso-pros/ , are highly recommended. You could also post to jobs.wordpress.net, if you would like.