Support

Home Forums Event Espresso Premium Change Text on Registration Checkout Page

Change Text on Registration Checkout Page

Posted: December 19, 2014 at 10:29 pm


b2995

December 19, 2014 at 10:29 pm

Hey Guys! How can I change the following message on the Registration Checkout page?

WANT TO CHANGE:
“The following events do not require payment at this time and will not be billed during this transaction. Billing will only occur after the attendee has been approved by the event organizer. You will be notified when your registration has been processed. If this is a free event, then no billing will occur.”

Thank you!


Lorenzo Orlando Caum

  • Support Staff

December 21, 2014 at 6:02 pm

Hi, that can be changed by using a translation file, a gettext filter, or an existing filter for FHEE__Single_Page_Checkout__registration_checkout__sold_out_events_msg:

add_filter( 'FHEE__Single_Page_Checkout__registration_checkout__sold_out_events_msg', 'ee_registration_checkout_preapproval_messaging' );
function ee_registration_checkout_preapproval_messaging() {
 
 return 'Please change this statement to your new messaging.';
 
}

The code above can be added to your child theme’s functions.php or a site specific plugin.


Lorenzo

The support post ‘Change Text on Registration Checkout Page’ is closed to new replies.

Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.

Event Espresso