Support

Home Forums Event Espresso Premium Sending Event Start time to Infusionsoft

Sending Event Start time to Infusionsoft

Posted: August 27, 2013 at 9:37 pm


panz

August 27, 2013 at 9:37 pm

I have added the following code to my registration_page_display.php file to allow the start date and time of an event to be available to map it to a custom field in Infusionsoft.

<input type=”hidden” name=”dr_start_date” value=”<?php echo $start_date; ?>” />
<input type=”hidden” name=”dr_start_time” value=”<?php echo $start_time; ?>” />

The start date line works but the start time line sends no value: (copied from pages source code)
<input type=”hidden” name=”dr_start_date” value=”2013-09-19″ /><br />
<input type=”hidden” name=”dr_start_time” value=”” />

Have I missed something or got the field name wrong?


Dean

August 28, 2013 at 11:00 pm

Hi,

You could use the $event array instead, as I don’t think there is a $start_time variable.

So:

<input type=”hidden” name=”dr_start_time” value=”<?php echo $event->start_time; ?>” />
 

The support post ‘Sending Event Start time to Infusionsoft’ is closed to new replies.

Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.

Event Espresso