Hey @dtcaldwell,
You should be able to do this without issue by using WordPress Core’s own function called “add_post_type_support()”, which you can read about in-depth here → https://codex.wordpress.org/Function_Reference/add_post_type_support
Here’s an example of some code with it that you could add to your theme’s functions.php file to add excerpts to Venues:
if ( class_exists( 'Tribe__Events__Main' ) ) {
/**
* Adds excerpts to the "Venue" post type.
*
* @link http://theeventscalendar.com/?p=1044777
*/
function tribe_add_excerpts_to_venues() {
add_post_type_support( Tribe__Events__Main::VENUE_POST_TYPE, 'excerpt' );
}
add_action( 'init', 'tribe_add_excerpts_to_venues' );
}
I hope this helps!
Cheers,
George