Hi Colin,
We’d be happy to point you in the right direction if we can. I appreciate your note that you aren’t a coder – realistically though it’s important to note that many changes like this one do involve working with code. That said, it shouldn’t be too tricky in this sort of case.
Try adding a snippet like this one to your theme’s functions.php file (of course, adapt the message to suit):
add_action( 'tribe_events_community_before_the_content', 'custom_ce_text_msg' );
function custom_ce_text_msg() {
echo 'Your submission must include at least 50 words - thanks!';
}
Does that work for you?