Hi Anthony,
Thanks for reaching out. The content that you put in that box will display above all of the event pages on your site.
To conditionally display content on certain pages, you can add the following to the functions.php file of your child theme.
function tribe_custom_html_before_event( $before ) {
if( tribe_is_community_edit_event_page() ) {
$before = 'My custom content on the Community page';
}
if ( tribe_is_month() ) {
$before = 'My custom content above the month view';
}
return $before;
}
add_filter( 'tribe_events_before_html', 'tribe_custom_html_before_event' );
You can add in additional conditions and content if you would like – this list of our available functions along with our themer’s guide are great resources for customizing our plugins.
I hope that helps. Please let me know if you have any questions!
Thanks,
Jennifer