Skip to content

Instantly share code, notes, and snippets.

@nefeline
Created November 20, 2017 11:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nefeline/c06da0f2ea3c600961427c8aed4c2a66 to your computer and use it in GitHub Desktop.
Save nefeline/c06da0f2ea3c600961427c8aed4c2a66 to your computer and use it in GitHub Desktop.
Add Text after the "Submit Event" button in Community Events Submission Form
<?php
/**
* Add Text after the "Submit Event" button in Community Events Submission Form.
* Author: Patricia Hillebrandt
*/
add_action( 'tribe_events_community_section_after_submit', 'add_text_after_submit_button', 11, 2 );
function add_text_after_submit_button() {
echo nl2br( "\n Your Text" );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment