Archived topic
How do I get rid of these elements?
1 reply · Started by Brent Wilson on January 17, 2018
I am using some Elementor shortcodes in the GP hooks for a header and a footer. But on the blog page (http://www.brentawilson.com/blog/) how do I get rid of the white just below the header and the black bar with the copyright stuff in it that is just above the footer?
Hi there,
You can remove the header with this snippet:
https://docs.generatepress.com/article/generate_header/
and the footer with this snippet:
add_action( 'after_setup_theme','lh_remove_footer' );
function lh_remove_footer() {
remove_action( 'generate_footer','generate_construct_footer' );
}
Adding PHP: https://docs.generatepress.com/article/adding-php/