Hey CDC,
Sure thing! There are two hooks available that you could use – one for before the form and one for after:
‘tribe_events_community_form_after_template’
‘tribe_events_community_form_before_template’
You can hook functions that include your custom text to either of these locations depending on where you would like it to display.
For example:
add_action( 'tribe_events_community_form_before_template', 'my_custom_text' );
function my_custom_text() {
echo '<p>my custom text</p>';
}
added to your theme’s functions.php file would add the text above the form.
Let me know if this helps.
Thanks!