Add one of more of the sample code snippets 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 to your attendees/registrants.
<?php
//* Do NOT include the opening php tag
//* Add a message above the ticket selector
add_action( 'AHEE__ticket_selector_chart__template__before_ticket_selector', 'ee_custom_messaging_before_ticket_selector' );
function ee_custom_messaging_before_ticket_selector() {
echo 'REPLACE ME';
}
<?php
//* Do NOT include the opening php tag
//* Add a message below the ticket selector
add_action( 'AHEE__ticket_selector_chart__template__after_ticket_selector', 'ee_custom_messaging_after_ticket_selector' );
function ee_custom_messaging_after_ticket_selector() {
echo 'REPLACE ME';
}
Here is a preview of each of the locations above: https://cl.ly/3h3m3p11182y
References:
https://eventespresso.com/topic/registration-form-with-signature/