Skip to content

Instantly share code, notes, and snippets.

@GeoffEW
Created August 10, 2016 21:29
Show Gist options
  • Save GeoffEW/b12ecb9a75b8ad2210e18183ffc96205 to your computer and use it in GitHub Desktop.
Save GeoffEW/b12ecb9a75b8ad2210e18183ffc96205 to your computer and use it in GitHub Desktop.
Replaces label for RSVP tickets in the radio button selector in the Community Tickets front-end "Add ticket" interface
<?php
function change_rsvp_label() { ?>
<script>
jQuery(document).ready( function ( ){
jQuery('input[value="Tribe__Tickets__RSVP"]').next().html('Free Tickets');
});
</script>
<?php
}
add_action('wp_head', 'change_rsvp_label');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment