Hi there, Carlos!
We typically ask that you start a new thread if you’d like direct support on a follow-up question to someone else’s thread, but I’m happy to help point you in the right direction here.
Yes, that option will add content to all pages throughout the plugin. If you are looking to just above the main calendar, you can use a snippet like this in your themes’sĀ functions.php file:
add_action( 'tribe_events_before_html', 'custom_events_before_html' );
function custom_events_before_html() {
// Check if displaying month view
if ( tribe_is_month() ) {
echo 'Your text goes here!';
}
}
That should get you what you’re looking for. I’ll go ahead and close this thread, but please feel free to open a new one if you have any follow-up questions and we’d be happy to help. š
Cheers!
Geoff