Hi Derek,
Thanks for getting in touch with us! I can help you here…
Just paste the snippet below in your theme’s (or child theme’s) functions.php file:
/* Tribe, insert content before calendar home page */
function tribe_before_html_home ( $before ) {
// bail if single event page
if ( is_single() ) return $before;
// your custom content
$content = '
Some content
';
// default markup
$content = '
' . $content . '
';
// return
return $content . $before;
}
add_filter( 'tribe_events_before_html', 'tribe_before_html_home' );
Be sure to replace the sample content for the actual content you would like to show before the calendar.
Best,
Nico