Howdy Jeremy, and welcome back to the forums. 🙂
I think the best way to remove the link would be to override the template for the calendar’s List View. You can read up on this more in our Themer’s Guide, but here are the basic steps:
- Make a copy of the list/single-event.php file. It;s located in /plugins/the-events-calendar/views/list/single-event.php.
- Make a new folder in your theme directory. Call it tribe-events.
- Mane a new folder in that one called list.
- Drop your copied file in that last folder.
Now that the template is in your theme files, you can modify it to suit your needs. In this case, remove the link wrapper around the event title:
<a class="url" href="<?php echo tribe_get_event_link() ?>" title="<?php the_title() ?>" rel="bookmark">
<?php the_title() ?>
</a>
You will also want to remove the “Find out more” link that follows the excerpt:
<a href="<?php echo tribe_get_event_link() ?>" class="tribe-events-read-more" rel="bookmark"><?php _e( 'Find out more', 'tribe-events-calendar' ) ?> »</a>
You also mentioned removing the Venue link. Although it will change the content a bit, I would change this line in the same file:
<?php echo implode( ', ', $venue_details ); ?>
…with this:
<?php echo tribe_get_venue() ?>
Does this help and will it work for you? Please let me know. 🙂
Cheers!
Geoff