I’d like to request some help in hiding a few elements on the Thank You page. Specifically, the “edit info” and “click here to edit all attendee data” links. Thanks.
The easiest method to hiding those elements is using some CSS, however there’s no classes on each of those links to easily target either of them so you will need something like this:
.ee-registrations-list p a:nth-of-type(1) {
display: none;
}
.ee-registration-details-dv>p a {
display: none;
}
The support post ‘EE Thank You Page – hiding elements’ 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.