Support

Home Forums Event Espresso Premium EE4 Customize Registration Check Out Page

EE4 Customize Registration Check Out Page

Posted: March 17, 2014 at 9:56 pm


Benjamin Mukasa

March 17, 2014 at 9:56 pm

The page with the content I would like to customize is:
http://ttaba.veritracker.com/registration-checkout/?ee=_register

I would like to change:
– The invoice payment option name to Installment Plan and
– the message “After finalizing your registration, you will be transferred to the payment overview where you can download your invoice.”

What php file do I need to change to do this?


Lorenzo Orlando Caum

  • Support Staff

March 18, 2014 at 9:09 am

Hi Benjamin,

You can change the button image and title of the payment gateway in WordPress admin –> Event Espresso –> Payment Settings –> Invoice

For changing the phrase during checkout, please try this function in your theme’s functions.php file:

function change_invoice_phrase($phrase)
{
$phrase = str_replace('After finalizing your registration, you will be transferred to the payment overview where you can download your invoice.', 'My new checkout phrase for invoices', $phrase);
return $phrase;
}
add_filter('the_content', 'change_invoice_phrase', 105);


Lorenzo

The support post ‘EE4 Customize Registration Check Out 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