Posted: July 23, 2014 at 11:30 pm
|
Hi there, I have a multi ticket setup and wouldlike to output specific infomration on a webpage. Event B Attendees is this poss? ee4 |
Hi Dave, This would require some custom development but we have an attendee list function which could be adapted to do the above, currently it pulls the FName, LName and Email address from the database but could be adapted to pull the extra information you are requesting. The function is available on our EE4 Useful PHP Snippets page. Dean also adapted this to be used as a shortcode which would suit your needs a little better: https://eventespresso.com/topic/front-end-attendee-list-page-ee4/ |
|
|
Thanks Tony, This is the output I receive when i use the method of creating a plugin and adding a page with shortcode [display_those_attendees eventid=”1774″]. see here http://burtongarran50th.org/?page_id=1855 I have a multiticket setup and wish to show the names of people attending each of the ticketed events within the ticket. Below is the code I used to make the widget. <?php add_shortcode(‘display_those_attendees’, ‘ee_attendee_list’ ); function ee_attendee_list($atts){ $EVT_ID = $atts[‘eventid’]; echo ‘<ul class=”attendee-list”>’; $sql = “SELECT ATT_fname, ATT_lname, ATT_email “; $attendees = $wpdb->get_results( $wpdb->prepare( $sql, $post->ID )); foreach($attendees as $attendee){ ‘; echo ‘‘; return; } |
|
Hi Dave, That would require further customisation involving pulling in various database tables to find out what datetimes are available on the event, what tickets are associated with each datetime and then display the attendees associated with each ticket. This goes beyond support and into the realms of customisation as it would take us time to work it all out, test etc. You could contact one of our recommended developers (https://eventespresso.com/developers/event-espresso-pros/ ) or submit a customisation request (https://eventespresso.com/contact/customization-request-form/). |
The support post ‘Who's attending?’ 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.