Sometimes, you may want to add additional text above your main calendar page. We’ll show you how to make that happen with a template override. So let’s get started!

Template Files

You can add content in by creating a template override for the view(s) that you want to add the text to. You can find the templates that you’ll want to copy in the following locations:

The Events Calendar
Month, List, & Day views:

  • wp-content/plugins/the-events-calendar/src/views/v2/month.php
  • wp-content/plugins/the-events-calendar/src/views/v2/list.php
  • wp-content/plugins/the-events-calendar/src/views/v2/day.php

Events Calendar Pro
Photo, Map, Summary, and Week views: 

  • wp-content/plugins/events-calendar-pro/src/views/v2/photo.php
  • wp-content/plugins/events-calendar-pro/src/views/v2/map.php
  • wp-content/plugins/events-calendar-pro/src/views/v2/summary.php
  • wp-content/plugins/events-calendar-pro/src/views/v2/week.php

Where to add your text

Add your text inside a <div> tag right after the following line: <div class="tribe-common-l-container tribe-events-l-container">

For example:

<div class="tribe-common-l-container tribe-events-l-container">
<div>Your custom text here</div>