Worked through the last item listed here for including the loop/archive display
This case being within – [your-theme]/tribe-events/pro/map/single_event.php
Added the website call, in this case we are using it as a “registration” link which was added as a way to quickly register for events. Code below:
$website = tribe_get_event_website_link();
<!-- Website button -->
<?php
// Event Website
if ( ! empty( $website ) ) : ?>
<div class="register-btn"><?php echo $website; ?></div>
<?php endif ?>
Hope that helps any wayward souls, like me, when making these theme updates!