Title: attendeeslist.php modification
Last modified: August 20, 2016

---

# attendeeslist.php modification

 *  Resolved [cgrabe](https://wordpress.org/support/users/cgrabe/)
 * (@cgrabe)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/attendeeslistphp-modification/)
 * Hello,
 * I have searched through the forum and it looks like the attendeelist.php file
   might have been updated since there was any info on this subject.
 * Currently on the single event page, it only shows a profile pic for who is registered
   for the event. I am looking for a way to add the subscriber’s name to the right
   of their profile pic with any comment they add underneath. If their profile pic
   was clickable that would be a bonus.
 * Any info on this would be much appreciated.
 * [http://wordpress.org/extend/plugins/events-manager/](http://wordpress.org/extend/plugins/events-manager/)

Viewing 4 replies - 1 through 4 (of 4 total)

 *  [agelonwl](https://wordpress.org/support/users/angelonwl/)
 * (@angelonwl)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/attendeeslistphp-modification/#post-3178068)
 * hi,
 * maybe this will help – [http://wordpress.org/support/topic/plugin-events-manager-list-of-attendees?replies=42](http://wordpress.org/support/topic/plugin-events-manager-list-of-attendees?replies=42)
 * also, try adding `$EM_Person->display_name`
 *  Thread Starter [cgrabe](https://wordpress.org/support/users/cgrabe/)
 * (@cgrabe)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/attendeeslistphp-modification/#post-3178079)
 * After reading this I realized that it was the attendees.php that I needed, not
   attendeeslist.php
 * Here is my code:
 * [http://pastebin.com/n7cTN6qi](http://pastebin.com/n7cTN6qi)
 * Where would I put the $EM_Person->display_name?
 * My goal it to display AVATAR, NAME, COMMENT for each attendee.
 * Thanks
 *  [agelonwl](https://wordpress.org/support/users/angelonwl/)
 * (@angelonwl)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/attendeeslistphp-modification/#post-3178082)
 * try to add that beside
 *     ```
       echo '<li>'. get_avatar($EM_Booking->get_person()->ID, 50) .'</li>';
       ```
   
 * to
 *     ```
       echo '<li>'.get_avatar($EM_Booking->get_person()->ID, 50).' - '.$EM_Booking->get_person()->display_name.'</li>';
       ```
   
 * then for the booking comment `$EM_Booking->booking_comment`
 *  Thread Starter [cgrabe](https://wordpress.org/support/users/cgrabe/)
 * (@cgrabe)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/attendeeslistphp-modification/#post-3178084)
 * That worked!
 * Thanks

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘attendeeslist.php modification’ is closed to new replies.

 * ![](https://ps.w.org/events-manager/assets/icon-256x256.png?rev=1039078)
 * [Events Manager - Calendar, Bookings, Tickets, and more!](https://wordpress.org/plugins/events-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/events-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/events-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/events-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/events-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/events-manager/reviews/)

 * 4 replies
 * 2 participants
 * Last reply from: [cgrabe](https://wordpress.org/support/users/cgrabe/)
 * Last activity: [13 years, 6 months ago](https://wordpress.org/support/topic/attendeeslistphp-modification/#post-3178084)
 * Status: resolved