I have a request from my client where they are trying to find the easiest way to print out a list of the attendee names for an event, not the account name that the attendee registered under. The reason is that the WordPress user accounts are under the parents’ names, but when registering for an event, they usually are registering a child.
This page would work great, if I could simply change it from looking at the parent’s name to the actual registered attendee name:
Dan – I’m not an EE staff, but thought I’d share the way I use Eli’s Custom SQL reports plug-in for attendance reports. A short code for a report is placed on a password protected page. Until the move to the iPad app, they can print this out from the web page. It works well for the “low-tech” staff and you could easily customize it to show any fields as needed.
Here’s one example attendance query:
SELECT
Concat((DAYNAME(ed.start_date)),’ ‘,(MONTH(ed.start_date)),’/’,(DAYOFMONTH(ed.start_date))) as Date, st.start_time as Start_Time,
CASE ed.category_id when “1” then “Canvas”
when “2” then “Clay”
when “3” then “Glass”
END as PartyType,
substring(ed.event_name,1,24) as Event_Name,
ea.coupon_code as Reference_Code,
ea.lname as Last_Name,
ea.fname as First_Name,
ea.Quantity,
ea.Phone
FROM wp_events_detail ed, wp_events_attendee ea,wp_events_start_end st
WHERE
ea.event_id=ed.id
and ed.id=st.event_id
and ea.payment_status=’Completed’
and ed.start_date >= CURRENT_DATE()
order by ed.start_date,st.start_time,event_name,last_name
If the attendees are in the childrens names and thats what you want, why not add the following shortcode to a private or hidden page and print that page out?
Instead of using the event identifier, you could set a category for the recurring events and then use this shortcode: [LISTATTENDEES category_identifier=”your_category_identifier”]
Viewing 4 reply threads
The support post ‘List Attendee Names instead of Account Names’ 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.
Support forum for Event Espresso 3 and Event Espresso 4.