Skip to content

Instantly share code, notes, and snippets.

@wpflames
Last active January 20, 2021 06:17
Show Gist options
  • Select an option

  • Save wpflames/49cdcb75e786ffeb7eb7448142d12c68 to your computer and use it in GitHub Desktop.

Select an option

Save wpflames/49cdcb75e786ffeb7eb7448142d12c68 to your computer and use it in GitHub Desktop.
Remove sidebar from checkout page in Storefront
<?php
// =========================================================================
// REMOVE STOREFRONT SIDEBAR FROM PRODUCT, CART AND CHECKOUT PAGE
// =========================================================================
function remove_storefront_sidebar() {
if( is_checkout() || is_cart() || is_product()) {
remove_action( 'storefront_sidebar', 'storefront_get_sidebar', 10 );
add_filter( 'body_class', function( $classes ) {
return array_merge( $classes, array( 'page-template-template-fullwidth page-template-template-fullwidth-php ' ) );
} );
}
}
add_action( 'wp', 'remove_storefront_sidebar' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment