Hi Michael,
So sorry for the trouble here! This is indeed an issue and the good news is that a fix is on the way.
There is also a workaround for the issue you can do now that is outlined in this thread.
I think it would be possible to change the link target and adding a snippet like this might do the trick:
add_action( 'tribe_events_single_event_after_the_meta', 'tribe_open_meta_links_new_tab' );
function tribe_open_meta_links_new_tab() {
echo '<script>
/* Open Event Meta Links in New Window */
jQuery(".single-tribe_events #tribe-events-content .tribe-events-meta-group-other dd a")
.addClass("external")
.click( function() {
window.open(this.href);
return false;
});
</script>';
}
I’ll set this thread to Pending Fix while we work on the issue and I’ll follow-up when there’s more to share.
Thanks!
Geoff