Skip to content

Instantly share code, notes, and snippets.

@lorenzocaum
Created August 5, 2015 15:48
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 lorenzocaum/650a476072bc665196b6 to your computer and use it in GitHub Desktop.
Save lorenzocaum/650a476072bc665196b6 to your computer and use it in GitHub Desktop.
How to change the messaging for the Register Now button in Event Espresso 4

Add the sample code below to your child theme's functions.php file or in a site specific plugin. Then change REPLACE ME to the new messaging that you would like to display for the Register Now button to your attendees/registrants.

<?php
//* Do NOT include the opening php tag

//* Adjust register now button text in Event Espresso 4
add_filter ('FHEE__EE_Ticket_Selector__display_ticket_selector_submit__btn_text', 'ee_register_now_button');

function ee_register_now_button() {
 return 'REPLACE ME';
}
@lorenzocaum
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment