Site logo

Archived topic

Removing Footer Site-info from WooCommerce sections

1 reply · Started by Sami on May 3, 2018

Viewing posts 1–2 of 2

Hi

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

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/

This archived topic is closed to new replies.