Skip to content

Instantly share code, notes, and snippets.

@joshfeck
Created May 23, 2016 20:13
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshfeck/ef8b8e0cdcaafacc09502aa276ab721f to your computer and use it in GitHub Desktop.
Save joshfeck/ef8b8e0cdcaafacc09502aa276ab721f to your computer and use it in GitHub Desktop.
Change the button text for one event, Event Espresso 4.
<?php
//* Please do NOT include the opening php tag, except of course if you're starting with a blank file
add_filter( 'FHEE__EE_Ticket_Selector__display_ticket_selector_submit__btn_text', 'my_custom_button_text', 10, 2 );
function my_custom_button_text( $btn_text, $event ) {
if ( $event->ID() == 51803 ) { // change this ID to match your event ID
$btn_text = 'Get on the bus!'; // change button text here
}
return $btn_text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment