Skip to content

Instantly share code, notes, and snippets.

@BeardedGinger
Created August 29, 2014 14:47
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 BeardedGinger/896fe8a0e41ac2b13e93 to your computer and use it in GitHub Desktop.
Save BeardedGinger/896fe8a0e41ac2b13e93 to your computer and use it in GitHub Desktop.
Change Required text on Community Events Fields
<?php
add_filter( 'tribe_community_required_field_marker', 'change_required_text' );
/**
* Change "required" text on required fields
*/
function change_required_text() {
$html = '<small class="req">Must Enter</small>';
return $html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment