Skip to content

Instantly share code, notes, and snippets.

@lorenzocaum
Created August 5, 2015 15:49
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/e024d66d25a272185390 to your computer and use it in GitHub Desktop.
Save lorenzocaum/e024d66d25a272185390 to your computer and use it in GitHub Desktop.
How to change the messaging for the View Details 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 View Details button to your attendees/registrants.

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

//* Adjust view details button text in Event Espresso 4
add_filter ('FHEE__EE_Ticket_Selector__display_view_details_btn__btn_text', 'ee_view_details_button');

function ee_view_details_button() {
 return 'REPLACE ME';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment