Hi, I want to edit the way the upcoming events are displayed into a Venue page.
They are currently:
Mike And Teddy’s Comedy Hour
September 25 | Recurring Event (See all)
Find out more »
I’d like to replace the ‘Recurring Event’ for the custom description (e.g. Every Tuesday), I know that this shows up when I hover on the text, but I want to be shown instead of this. I also want to get rid of the ‘Find out more »’ link. So basically I want to edit the template :D, but the only code I have on the pro/single-venue.php is this one:
<!– Upcoming event list –>
<?php do_action(‘tribe_events_single_venue_before_upcoming_events’) ?>
<?php // Use the ‘tribe_events_single_venue_posts_per_page’ to filter the
// number of events to display beneath the venue info on the venue page.
?>
<?php echo tribe_include_view_list( array(‘venue’ => $venue_id, ‘eventDisplay’ => ‘upcoming’, ‘posts_per_page’ => apply_filters( ‘tribe_events_single_venue_posts_per_page’, 100 ) ) )?>
<?php do_action(‘tribe_events_single_venue_after_upcoming_events’) ?>
How can I edit this?