Hi Pamela!
Thanks for getting in touch with us. Let me help you with this topic.
By default the event website URL is targeted to open in the same tab, but we provide a filter to change exactly that.
You can copy and paste the following snippet into your functions.php file to accomplish that:
add_filter( 'tribe_get_event_website_link_target', 'blank_target_for_new_window' );
function blank_target_for_new_window() {
return '_blank';
}
Please try it out and let me know if it works for your site.
Thanks,
Victor