Last active
January 20, 2021 06:17
-
-
Save wpflames/49cdcb75e786ffeb7eb7448142d12c68 to your computer and use it in GitHub Desktop.
Remove sidebar from checkout page in Storefront
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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