Support

Home Forums Event Espresso Premium Editing Additional Attendees?

Editing Additional Attendees?

Posted: January 13, 2014 at 10:49 am


Ozzy Rodriguez

January 13, 2014 at 10:49 am

Event Espresso version 3.1.36.1.P
WordPress version WP 3.8
Installed plugins
Event Espresso – MailChimp Integration by version 1.2
Event Espresso – Members Addon by Event Espresso version 1.9.8.p
Event Espresso – Multi Event Registration by Seth Shoultes version 1.0.5.p
Event Espresso – Ticketing by Event Espresso version 2.1.p
Event Espresso Volume Discounts by Seth Shoultes version 0.5.1

Is there any way for the registrant to be able to edit additional attendees?


Dean

January 14, 2014 at 3:45 am

Hi Ozzy,

After the registration is done, the primary attendee cannot edit the additional attendee data, though they can themselves edit it via the [edit_attendee_link] that will be in their registration emails.


Ozzy Rodriguez

January 14, 2014 at 3:56 pm

Is there any way to get that info on a page after the fact instead of it just being in the email sent to them?


Sidney Harrell

January 16, 2014 at 12:07 pm

Try putting this into your payment_overview.php template:

<tr>
			<?php 
			$attendees = $wpdb->get_results($wpdb->prepare("SELECT registration_id, id, event_id, fname, lname FROM ".EVENTS_ATTENDEE_TABLE." WHERE attendee_session=%s", $attendee_session), OBJECT);
			foreach ($attendees as $attendee) {
				echo espresso_edit_attendee($attendee->registration_id, $attendee->id, $attendee->event_id, 'attendee', sprintf(__('Edit Registration Details for %s, %s','event_espresso'), $attendee->lname, $attendee->fname)); ?><br/>
			<?php } ?>
		</tr>


Ozzy Rodriguez

January 16, 2014 at 1:10 pm

thank you very much guys!

The support post ‘Editing Additional Attendees?’ 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