Archived topic
Hide footer bar on all pages
5 replies · Started by Joel on February 1, 2018
Viewing posts 1–6 of 6
Hi, I am looking to hide the bottom footer bar (not the footer widgets) across the site, any suggestions how to do this?
Thanks
Hi there,
Try this snippet:
add_action( 'after_setup_theme','tu_remove_footer' );
function tu_remove_footer() {
remove_action( 'generate_footer','generate_construct_footer' );
}
Adding PHP: https://docs.generatepress.com/article/adding-php/
Hi
Is there an option to do this via the Elements - layout module?
I can only see the option to hide the complete footer.
Thanks
Dan
You are correct that there isn't :)
Thanks Leo
so just the action on top then?
Yup :)
This archived topic is closed to new replies.