Skip to content

Instantly share code, notes, and snippets.

@srdco
Forked from jamiemarsland/gist:3835778210966604defa
Last active December 19, 2020 01:25
Show Gist options
  • Save srdco/fa852ebe33bde0e42d7e5834ac7ca61a to your computer and use it in GitHub Desktop.
Save srdco/fa852ebe33bde0e42d7e5834ac7ca61a to your computer and use it in GitHub Desktop.
Make WooThemes Storefront product pages full width
function remove_storefront_sidebar() {
remove_action( 'storefront_sidebar', 'storefront_get_sidebar', 10 );
}
add_action( 'get_header', 'remove_storefront_sidebar' );
function remove_storefront_sidebar() {
if ( is_product() ) {
remove_action( 'storefront_sidebar', 'storefront_get_sidebar', 10 );
}
}
add_action( 'get_header', 'remove_storefront_sidebar' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment