Hi Ruth,
Thanks for reaching out!
I’m sorry to hear about this issue with the attendee list.
We had similar reports earlier, which was solved with one of the last maintenance releases, but it looks like there is more to this.
Please try the following workaround for the issue. Copy the below snippet into your (child) theme’s functions.php file:
[code language=”php”]
add_filter( ‘tribe_tickets_attendees_admin_expire’, ‘custom_tickets_attendees_expire’ );
add_filter( ‘tribe_tickets_attendees_expire’, ‘custom_tickets_attendees_expire’ );
function custom_tickets_attendees_expire () {
return 0;
}
[/code]
Let me know if this does the trick.
Thanks and cheers,
Andras