Hi Ted,
Thanks for reaching out to us! I can help you here…
The image in single event doesn’t have any links, this was changed as the other thread states. If you want to make it link to the Event Website URL, you can go ahead and create a template override (details on our themer’s guide) of the single event template (located at wp-content/plugins/the-events-calendar/src/views/single-event.php). Once the copy of the template is in place you can change line 58 for the code below to make this work:
// print event featured image with event website link
$image_html = get_the_post_thumbnail( $event_id, 'full' );
$event_website = tribe_get_event_website_url();
if ( ! empty( $image_html ) && ! empty ( $event_website ) ) {
echo '
';
} elseif ( ! empty( $image_html ) ) {
echo '
' . $image_html . '
';
}
Please let me know if this works for you,
Best,
Nico