Archived topic
Remove foote bar
4 replies · Started by Carlos on May 8, 2018
Viewing posts 1–5 of 5
Hi,
How can i remove Removing the entire footer bar?
Hi Carlos, you can add this CSS:
.site-info {
display: none;
}
This snippet should work as well:
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/
Thank you
Glad we could help :)
This archived topic is closed to new replies.