[Support request] Removing Footer Site-info from WooCommerce sections

Home Forums Support [Support request] Removing Footer Site-info from WooCommerce sections

Home Forums Support Removing Footer Site-info from WooCommerce sections

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #567011
    Sami

    Hi

    Is there any filter or trick on removing the Footer Site-info section from WooCommerce checkout pages (cart and checkout)?

    #567447
    Leo
    Staff
    Customer Support

    Hi there,

    Try this snippet:

    add_action( 'wp','tu_remove_footer' );
    function tu_remove_footer() {
        if ( is_cart() || is_checkout() ) { 
            remove_action( 'generate_footer','generate_construct_footer' );
        }
    }

    Adding PHP: https://docs.generatepress.com/article/adding-php/

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