Forum Replies Created
-
AuthorPosts
-
ccwbra
Participant<?php
/**
* 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
/* Add more information to the attendee output */
global $post;
$attendees = Tribe__Tickets__Tickets::get_event_attendees( $post->ID );
foreach ( $attendees as $key => $attendee ) {
if ( isset( $attendees_list[$attendee[‘attendee_id’]] ) ) {
$attendees_list[$attendee[‘attendee_id’]] .= ‘<span>’ . $attendee[‘purchaser_name’] . ‘</span>’;
}
}
foreach ( $attendees_list as $attendee_id => $avatar_html ) { ?>
<li class=’tribe-attendees-list-item’><?php echo $avatar_html; ?>
<?php } ?></div>
ccwbra
ParticipantHi Jennifer, I followed these steps but the attendee names are not showing. Can you see here? There’s a gravatar but no name…. http://ccwbra.com/event/union-lake-regatta-2/
ccwbra
Participantthank you
ccwbra
ParticipantHi, I checked “display attendees” and it’s working now. I need to get members to create Gravatar accounts to show images. However, is there any way to make it more clear who they are, like you mouse over and see their names?
ccwbra
ParticipantAlso, I activated a default theme and still did not see attendees. Any ideas?
ccwbra
ParticipantThis reply is private.
ccwbra
ParticipantHi Jennifer, I had another problem earlier where I provided all the system information. Victor helped me. Can you look here and see system info?
ccwbra
ParticipantThank you that fixed it
ccwbra
ParticipantIf I delete the current Events Tickets Plus plug-in to install new version, it will delete all the data we’ve gathered for this event, correct?
ccwbra
ParticipantHi Victor. I appear to have latest version. Please see attached screenshot. It is showing 4.4.6 as latest version and does not give me option to update. Can you tell me how to get/update to latest version?
ccwbra
ParticipantHi there is no debug file in wp-content (just the contents you see here in attachment). Can you take other steps? Thank you.
ccwbra
ParticipantHi, okay, I did not have $table_prefix = ‘wp_’; in my wp-config.php file but I have $table_prefix = ‘wp_’;
I added those two lines below it and went back to Attendees a few times. Can you check now?
ccwbra
ParticipantHi, when I click export it downloads an empty excel file. I clicked “debug mode” in the settings. Can you check and see why it’s happening?
-
This reply was modified 8 years, 8 months ago by
ccwbra.
ccwbra
ParticipantAlso, on the Attendees page it shows “no tickets” even though I’ve sold tickets. This is where I would need to export data, I’m assuming. Where is the data and ticket info?
-
This reply was modified 8 years, 8 months ago by
-
AuthorPosts
