Skip to content

Instantly share code, notes, and snippets.

@wooxperto
Created August 17, 2023 06:20
Show Gist options
  • Save wooxperto/9cec814a76b67b0c9801656bac70af55 to your computer and use it in GitHub Desktop.
Save wooxperto/9cec814a76b67b0c9801656bac70af55 to your computer and use it in GitHub Desktop.
Remove sidebar from Storefront theme
<?php
/**
* @snippet Remove sidebar - Storefront theme | WooCommerce
* @author WooXperto
* @date 17.08.2023
*/
if( ! function_exists("wooXperto_remove_storefront_sidebar")){
function wooXperto_remove_storefront_sidebar() {
if ( is_product() ) {
remove_action( 'storefront_sidebar', 'storefront_get_sidebar', 10 );
}
}
}
add_action( 'get_header', 'wooXperto_remove_storefront_sidebar' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment