I need to add this message to the login page before the input fields: “New users will have to register or call 523-1026 to reserve”.
I can’t find the template to add the message though. I would like it to replace the message “Please log in first”
The following snippet should allow you to add the needed text above the login form for Community Events.
add_action( 'tribe_ce_event_submission_login_form', 'ce_login_intro' );
function ce_login_intro() {
echo 'New users will have to register or call 523-1026 to reserve';
}