Hi James,
Thanks for reaching out to us! I can help you here.
You can configure this per event, on the edit event screen: https://cloudup.com/cZXgw1E-v7V . We have also introduced a change in how this works in maintenance release 4.1.2, per default this will be disabled.
Other option is to add this snippet to your functions.php to disable the option for all events:
/**
* Disables the public attendee lists on all events
*
* Removes the tribe_events_single_event_after_the_meta action that injects the attendee
* list that was introduced with the initial 4.1 release of Event Tickets Plus
*/
function disable_attendee_list_on_post() {
if ( ! class_exists( 'Tribe__Tickets_Plus__Attendees_List' ) ) {
return;
}
remove_action('tribe_events_single_event_after_the_meta', array(Tribe__Tickets_Plus__Attendees_List::instance(),'render'), 4);
}
add_action( 'wp', 'disable_attendee_list_on_post' );
Please let me know if this answers your question,
Best,
Nico