[Support request] Hide footer bar on all pages

Home Forums Support [Support request] Hide footer bar on all pages

Home Forums Support Hide footer bar on all pages

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #485224
    Joel

    Hi, I am looking to hide the bottom footer bar (not the footer widgets) across the site, any suggestions how to do this?
    Thanks

    #485567
    Leo
    Staff
    Customer Support

    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/

    #927090
    Dan

    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

    #927191
    Leo
    Staff
    Customer Support

    You are correct that there isn’t ๐Ÿ™‚

    #927203
    Dan

    Thanks Leo
    so just the action on top then?

    #927227
    Leo
    Staff
    Customer Support

    Yup ๐Ÿ™‚

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.