Skip to content

Instantly share code, notes, and snippets.

@lorenzocaum
Last active August 29, 2015 14:24
How to change the Attendee 1 heading to something else during registration checkout 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 123 to your actual page ID for your registration checkout page. You can find this numeric value by going to the registration checkout page in your WP dashboard and viewing the end of the URL.

Next change "New Messaging Here" to the actual message that you want to appear.

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

//* Adjust the messaging for attendee 1 in registration checkout
function ee_change_messaging_attendee_1_registration_checkout( $content ) {
if (is_page(123)) {
	$content = str_replace( 'Attendee 1', 'New Messaging Here', $content);
	return $content;
}
}
add_filter( 'the_content', 'ee_change_messaging_attendee_1_registration_checkout', 12 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment