Hi, I followed the instructions for customizing button text via our site specific plugin. I’d like to change to “Proceed to Payment Options” button to say “Go to Next Steps.” Below is the code I’ve added based on the instructions. The button text did not change. Am I doing something wrong? I followed the instructions in this article: https://eventespresso.com/wiki/customize-checkout-registration-button-text/
Thanks in advance!
M
function ee_proceed_to_button() {
return ‘Go to’;
}
Would I add the code exactly the way you have it here? Nothing happened when I did that. Should I change or add something to it? Thank you for answering on the weekend!
Hi there it looks like you the text to be ‘Go to Next Steps’ right?
In that case you want:
function ee_proceed_to_button() {
return 'Go to Next Steps';
}
add_filter ('FHEE__EE_SPCO_Reg_Step__set_submit_button_text___submit_button_text', 'ee_proceed_to_button');
The support post ‘Code for customizing buttons is not working’ 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.