Hey Chris!
You should be able to do this on your site for sure β it will indeed require some custom code, which we unfortunately can only provide limited support for, but before getting into all that, can you first elaborate a bit on exactly what you mean when you mention wanting to change the name “Venue”?
For example, do you only want this change to be apparent in the Admin of your site? Or just on the front-end? Or both?
The simplest way to get started, regardless of the specifics of the above questions, is to use the Venue label filters for both the plural and singular instances of the word “Venue”. You can do this by adding code like the following to the bottom of your theme’s functions.php file:
add_filter('tribe_venue_label_singular', 'tribe_change_single_venue_label' );
function change_single_venue_label() {
return 'Where';
}
add_filter('tribe_venue_label_plural', 'tribe_change_plural_venue_label' );
function change_plural_venue_label() {
return 'Where';
}
Try that out and see how much it helps, if at all βΒ let us know more details about your goals from there! π
Thanks,
George