Hi Bud,
Here’s what I did to get the email links working with the Twenty Fifteen theme as my active theme:
- Make a copy of the organizer.php template. It is located at /plugins/the-events-calendar/views/modules/meta/organizer.php.
- Make a new folder in your theme directory called tribe-events
- Make a new folder in that one called modules
- Make a new folder in that one called meta
- Drop the copied organizer.php file in that last folder
Now that the template is in the theme folder, it can modified to suit our needs. In this case, that would be changing this line (line 55 for me):
<?php echo esc_html( $email ); ?>
…to this:
<a href="mailto:<?php echo esc_attr( $email ) ?>"><?php echo esc_html( $email ); ?></a>
That (and removing the previous snippet from functions.php) gets me the linked email address on the single event page–does that work for you as well?
Please do go ahead and open a new thread for that other issue you noted if you haven’t already.
Thanks!
Geoff