Charlie Stoops
January 3, 2017 at 1:24 pm
Hi,
I am looking to remove the WordPress menu for certain (but not all) EE pages completely. For example on this page: http://www.epmsummit.com/events/bpc-netweaver-technical-admin-training-march/
Do you know how I can accomplish this?
Josh
January 3, 2017 at 1:51 pm
Add New Note to this Reply
One way would be by adding some CSS to the Customizer’s Additional CSS section.
e.g.
.postid-2014 .gdlr-navigation-wrapper {
display:none;
}
Reference:
https://wordpress.org/support/topic/how-to-remove-nav-menu-on-one-page-only/#post-7624797
Charlie Stoops
January 3, 2017 at 1:59 pm
Add New Note to this Reply
Hi Josh,
Thanks for your prompt response. I have added that code to the custom CSS section but it is still showing up. Any ideas?
Josh
January 3, 2017 at 2:20 pm
Add New Note to this Reply
You’ll need to clear your browsers cache after you make CSS edits in order to see the changes. Here’s a screenshot from after clearing the browser cache .
Charlie Stoops
January 3, 2017 at 2:26 pm
Add New Note to this Reply
Perfect, thank you! Any way to remove the logo at the top left as well?
Josh
January 3, 2017 at 2:35 pm
Add New Note to this Reply
If you change the CSS to be:
.postid-2014 .gdlr-header-wrapper {
display:none;
}
it will then not display both the logo and the menu on that page.
Hope that helps, and if you have a moment, can you add a review for Event Espresso in the WordPress Plugins Directory? Thanks!
Charlie Stoops
January 3, 2017 at 3:52 pm
Add New Note to this Reply
That worked! Thank you!