// =========================================================================
//REMOVE SIDEBAR OF STOREFRONT CART PAGE
// =========================================================================
function remove_cart_sidebar_storefront() {
if( is_cart()){
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_cart_sidebar_storefront' );
Leave a Reply