Forum Replies Created
-
AuthorPosts
-
John
ParticipantHi Cliff:
I didn’t think the public attendee list was a customization as if it was, why would the check box be there to hide it? I feel that the public attendees list for all attendees should be there out of the box.
The code you sent me is very close to achieving this, but not quite. It does list each attendee as they sign up, but it only will list one single name and gets replaced by the name of the most recent attendee to sign-up.
See: http://winesavantmag.com/event/wine-tasting-simply-wine/2016-09-16/?rsvp_sent=1
John
ParticipantMy attendees-list.php file looks like this and I need to know what modifications to insert to show the actual name of the attendees either with or preferably without the avatars
* Renders the attendee list for an event
*
* @version 4.1
*
*/
?>
<div class=’tribe-attendees-list-container’><?php esc_html_e( ‘Who\’s Attending’, ‘event-tickets-plus’ ) ?>
<?php echo esc_html( sprintf( _n( ‘One person is attending %2$s’, ‘%d people are attending %s’, $attendees_total, ‘event-tickets-plus’ ), $attendees_total, get_the_title( $event->ID ) ) ); ?>
<ul class=’tribe-attendees-list’>
<?php foreach ( $attendees_list as $attendee_id => $avatar_html ) { ?>
<li class=’tribe-attendees-list-item’><?php echo $avatar_html; ?>
<?php } ?></div>
John
ParticipantMy issue is not with the Avatar, it is the fact that it is displaying ONLY the Avatar and not the attendees name as advertised.
http://winesavantmag.com/event/wine-tasting-simply-wine/2016-09-09/?rsvp_sent=1
John
ParticipantI am having the same problem and it is even trying to go from a site that is using The Events Calendar
-
AuthorPosts
