Hi there,
Thanks for reaching out. I’m sorry to hear that you are having issues with the attendees showing. I will try to help you get this sorted.
There is currently a known issue with attendees showing properly due to some recent updates. However, reading through the thread you linked to, it looks like they may actually be experiencing a different bug.
If you create a new test RSVP and sign up for it and mark yourself as “going” does it show up in the attendees list?
Can you try adding the following PHP snippet to your theme/child-theme’s functions.php file, and let me know if the attendees show afterwards?
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;
}
Let me know how that goes.
Thanks,
Sky