[Support request] Remove foote bar

Home Forums Support [Support request] Remove foote bar

Home Forums Support Remove foote bar

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #570733
    Carlos

    Hi,
    How can i remove Removing the entire footer bar?

    https://cl.ly/2j0S042I150W

    #570736
    David
    Staff
    Customer Support

    Hi Carlos, you can add this CSS:

    .site-info {
        display: none;
    }
    #570744
    Leo
    Staff
    Customer Support

    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/

    #570748
    Carlos

    Thank you

    #570778
    Leo
    Staff
    Customer Support

    Glad we could help 🙂

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