Support

Home Forums Event Espresso Premium EE3 Attendee List Filters

EE3 Attendee List Filters

Posted: July 29, 2016 at 3:44 am


gmilne80

July 29, 2016 at 3:44 am

Is it possible to filter the attendee list in someway to show all the attendees booked on events that have today as the start date. We have 5 events that run each day and it would be useful to show a list of everyone booked in for all the events in one screen for a specific day rather than having to go into each event separately.


Tony

  • Support Staff

July 29, 2016 at 4:29 am

Hi there,

That’s not currently available within EE.

The easiest way to list out each of the registrations for multiple events is to view the events within the Event Overview, hover over the event name and right click on the ‘Attendees’ link that appears – http://take.ms/FkOc1

You can then open each events attendee list within a new tab so its easier to view multiple listings.


gmilne80

July 29, 2016 at 5:51 am

I was looking at using the [LISTATTENDEES] shortcode to make a password protected page with the listof attendees for each event. However, I’ve run into an issue with group registrations as it only shows it as a single attendee. Is there anyway to show the number of tickets bought by each person in the list or to at least list the name once for each ticket bought so I can see an accurate total of attendees?


Josh

  • Support Staff

July 29, 2016 at 2:17 pm

Yes you can copy the attendee_list.php template from the EE3 plugin to /wp-content/uploads/espresso/templates, then you alter the line of code that displays the names from:

<li class="<?php espresso_template_css_class('attendee_details','attendee_details'); ?>"> <span class="<?php espresso_template_css_class('espresso_attendee','espresso_attendee'); ?>"><?php echo $gravatar ?><?php echo stripslashes_deep($fname . ' ' . $lname) . $city_state .'</p>'; ?> </span>

to:

<li class="<?php espresso_template_css_class('attendee_details','attendee_details'); ?>"> <span class="<?php espresso_template_css_class('espresso_attendee','espresso_attendee'); ?>"><?php echo $gravatar ?><?php echo stripslashes_deep($fname . ' ' . $lname) . $city_state . ' ' . $attendee->quantity . '</p>'; ?> </span>


gmilne80

July 29, 2016 at 3:38 pm

Thats excellent, the only other thing I’d like to add in is the Ticket Type name beside the number of tickets so I know if its adults/children/etc.

I wasn’t sure what the variable is I’d need to add to put this in I tried $attendee->ticket_id but no joy.


Josh

  • Support Staff

July 29, 2016 at 4:04 pm

You can avoid guessing by doing a print_r($attendee); in your template. It sounds like you’re looking for price_option.


gmilne80

July 29, 2016 at 4:35 pm

Thank you very much that’s exactly what I needed.

The support post ‘EE3 Attendee List Filters’ 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