Hey Scott,
We unfortunately cannot help out with customizations, so you’ll have to take the reins on this. Please see the “Product Support” section of this page for more information → http://theeventscalendar.com/terms
—
With that being said, I hope I can help at least a bit here – a simple method for doing what you ask is to implement a JavaScript solution by using the code below. You can do this by copying the code below and pasting it into your theme’s functions.php file:
add_action( 'wp_footer', 'wp_make_all_links_open_in_new_window' );
function wp_make_all_links_open_in_new_window() {
?>
<script>
(function () {
var links = document.getElementsByTagName( 'a' );
for ( var i = 0; i < links.length; ++i ) links[i].target = '_blank';
})();
</script>
<?php
}
Ensure that any other customizations you have tried thus far are removed – get rid of any previously-attempted code solutions for this functionality. Then, add in the code above to your theme’s functions.php and see how things behave.
Best of luck with your customization,
George