Hi, I am using EE4 where I have set up a free event, currently the user –
selects a ticket from the event list
completes attendee registration form
clicks “proceed to payment options”
“this is a free event no payment is needed” is shown
Then the user clicks finalize.
I would like the finalize button to appear below the attendee information form.(replacing “proceed to payment options”)
Can you explain how to go about making this change.
-What I plan to do now is to rename the button “proceed to payment options” to “submit”
-replace the text “this is a free event no payment is needed” to show the attendee’s information they entered previously.
-keep the finalize button.
Can you specify the files I need to change and the specific parts?
Duplicating the registrant information would require editing the core plugin and that isn’t something that we support at this time. Future versions of EE4 will allow for easier editing through template files.
The messaging for the free billing can be replaced with something like this:
function ee_replace_free_event_no_billing_messaging($content)
{
$content = str_replace('This is a free event, so no billing will occur.', 'Please click the Finalize button below',$content);
return $content;
}
add_filter('the_content','ee_replace_free_event_no_billing_messaging', 200);
BTW: the Finalize button text can also be changed. See the tutorial at the beginning of my reply.
—
Lorenzo
Viewing 3 reply threads
The support post ‘Registration form, skip step 2 – payment options’ 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.