Thank you for your patience with the delayed response over the weekend!
In addition to the code from that knowledgebase article, I would recommend adding code like this to your theme’s functions.php file:
add_action( 'init', 'tribe_relocate_attendees_list' );
function tribe_relocate_attendees_list() {
$attendees_list = Tribe__Tickets_Plus__Attendees_List::instance();
remove_action( 'tribe_events_single_event_after_the_meta', array( $attendees_list, 'render' ), 4 );
add_action( 'tribe_events_single_event_before_the_meta', array( $attendees_list, 'render' ), 4 );
}
I tinkered a bit and it’s this code that finally let me achieve what you describe:
So I would like to move this between the content and event details.
Try it out and let me know if it helps!
— George