A client asked me to change the registration process in 2 ways and I am not really a coder so I am unsure how to do it.
1. They want to remove the “Steps” header on the registration pages
2. They want to change the way the attendees are listed when signing up for more than one event. It is maxed at 5 people to register at a time. During the registration process, each attendee is listed as 1, 2, 3, 4, 5 but continues in the second event as attendee 6, 7, 8, 9, 10 etc. They asked that is only read as 1, 2, 3, 4, 5 for each section. How can I change that?
Thanks!
1. They want to remove the “Steps” header on the registration pages
Just the header and leave the actual steps? If so you can use some CSS:
#spco-steps-big-hdr {
display: none;
}
If you also want the steps hidden you can use:
#spco-steps-display-dv {
display: none;
}
You can add those to Appearance -> Customize -> Additional CSS.
2. They want to change the way the attendees are listed when signing up for more than one event. It is maxed at 5 people to register at a time. During the registration process, each attendee is listed as 1, 2, 3, 4, 5 but continues in the second event as attendee 6, 7, 8, 9, 10 etc. They asked that is only read as 1, 2, 3, 4, 5 for each section. How can I change that?
Currently, this isn’t possible, the attendee count runs on a loop through all of the registrations not just the count of single event registrations.
You could remove that heading, or just the count number if that’ll work?
Viewing 1 reply thread
The support post ‘Altering the registration process’ 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.