Hi Gary,
Absolutely, that’s totally possible! I would suggest overriding the list/single-event.php template to make that happen. You can learn more about overriding calendar templates in our Themer’s Guide, but it basically boils down to this:
- Make a copy of the single-event.php template. It is located at wp-content/plugins/the-events-calendar/src/views/list/single-event.php
- Make a new folder in your theme called tribe-events
- Make a new folder in that one called list
- Drop your copied single-event.php file in that last folder
Now that the template is in your theme, you can modify it to suit your needs. In this case, change the “Find out more” text to the wording of your choice. That is located on Line 78 for me and looks like this:
`<a href=”<?php echo esc_url( tribe_get_event_link() ); ?>” class=”tribe-events-read-more” rel=”bookmark”><?php esc_html_e( ‘Find out more’, ‘the-events-calendar’ ) ?> »</a>`
Will this work for you? Please let me know. 🙂
Cheers!
Geoff