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.”
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
Viewing 1 reply thread
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.
Support forum for Event Espresso 3 and Event Espresso 4.