Skip to content

Instantly share code, notes, and snippets.

@lorenzocaum
Last active September 19, 2015 20:05
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/c639e8102ea852517810 to your computer and use it in GitHub Desktop.
Save lorenzocaum/c639e8102ea852517810 to your computer and use it in GitHub Desktop.
Change the above information will be used for any additional tickets/attendees messaging on the registration checkout page for Event Espresso 4

Add the sample code below to your child theme's functions.php file or in a site specific plugin.

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

//* Change the messaging for the additional tickets/attendees on the registration checkout page
add_action( 'FHEE__registration_page_attendee_information__auto_copy_attendee_pg', 'ee_custom_messaging_above_information_additional_tickets_attendees' );
function ee_custom_messaging_above_information_additional_tickets_attendees() {

 return 'Replace me with new messaging or delete this entire statement to remove the messaging.';
}
@lorenzocaum
Copy link
Author

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