My customization is actually a request to simplify the Venue drop down in the Community Events form to simply be a form field. At the moment community > modules > venue.php contains code calling a select dropdown.
<?php
tribe_community_events_venue_select_menu( $event );
// The venue meta box will render everything within a <tbody>
$metabox = new Tribe__Events__Linked_Posts__Chooser_Meta_Box( $event, Tribe__Events__Venue::POSTTYPE );
$metabox->render();
?>
In place of this code, what code would I use to make the Venue a simple form field that can be sent to the calendar event in the same way the above code does. My reason is the client says the users are getting confused when they see all the options.