Skip to content

Instantly share code, notes, and snippets.

@lorenzocaum
Created August 9, 2014 22:03
Show Gist options
  • Save lorenzocaum/4ac831dab405ea684f62 to your computer and use it in GitHub Desktop.
Save lorenzocaum/4ac831dab405ea684f62 to your computer and use it in GitHub Desktop.
Change the register button in Event Espresso 3 to say buy tickets.
<?php
//* Do NOT include the opening php tag
function ee_replace_register_test_buy_tickets( $translated, $original, $domain ) {
$strings = array(
'Register' => 'Buy Tickets',
);
if ( isset( $strings[$original] ) ) {
$translations = get_translations_for_domain( $domain );
$translated = $translations->translate( $strings[$original] );
}
return $translated;
}
add_filter( 'gettext', 'ee_replace_register_test_buy_tickets', 10, 3 );