Hi,
Thanks for using our plugins. I can help out here.
It looks like you are getting a fatal error from a custom template in your theme from a method that was deprecated 16 months ago and removed in 3.12.
So on this file:
/home/mspark/public_html/wp-content/themes/gameplan/tribe-events/list/content.php
on line 105
change this
Tribe_Register_Meta::gmap_link()
to this:
<?php if ( tribe_show_google_map_link() ) : ?>
<?php echo tribe_get_map_link_html(); ?>
<?php endif; ?>
Not sure if you need the php tags there or not as that function is typically not found there.
Anyway let me know how that works out.
Thanks