Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the pue-sales domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114
Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the better-click-to-tweet domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114
Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the pue-amazon domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114
Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the pue-stats domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114
Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wordpress-seo domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114 List Attendee Names instead of Account Names | Event Espresso - Staging Server
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.