I have found out that the footer is a big distraction during the checkout process for my website, so I decided to remove / hide it from the checkout process.
For the event pages, I did this very easily via my theme page options.
How can I do that for the checkout pages (e.g. /registration-checkout/#checkout) ?
The registration checkout page is a standard page so you could use a custom template for that specific page (depends on you theme if you already have this available).
However the simplest method is to hide it using some CSS.
Your checkout page has an ID of 8, so using the body class page-id-8 you can do something like this:
.page-id-8 .fusion-footer {
display: none;
}
If you theme also has options to disable the footer for specific pages you can just use that if you prefer.
The support post ‘how to remove footer from event espresso checkout pages’ 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.