Hmm. So you basically want to add the ticket form to list view? I can definitely see that as being useful to a few folks … how about adding the following snippet to your theme’s functions.php file?
function wootix_list_view_ticket_form() {
if ( ! class_exists( 'TribeWooTickets' ) ) return;
$ticket_form = array( TribeWooTickets::get_instance(), 'front_end_tickets_form' );
add_action( 'tribe_events_after_the_content', $ticket_form );
}
add_action( 'tribe_events_before_loop', 'wootix_list_view_ticket_form' );
remove_action( 'tribe_events_after_loop', 'wootix_list_view_ticket_form' );
Let me know if that works for you 🙂