Hey Deb,
Thanks for reaching out to us!
There are a couple of ways that you could approach this. The best would be to utilize the “‘tribe_events_community_form_before_template'” action and write a simple function to include your text. You could include something like the following in your theme’s functions.php file:
add_action( 'tribe_events_community_form_before_template', 'my_instruction_text' );
function my_instruction_text() {
echo '<p>My instructions above the submission form</p>';
}
Let me know if this helps.
Thanks!