Forked from jamiemarsland/gist:3835778210966604defa
Last active
December 19, 2020 01:25
-
-
Save srdco/fa852ebe33bde0e42d7e5834ac7ca61a to your computer and use it in GitHub Desktop.
Make WooThemes Storefront product pages full width
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
function remove_storefront_sidebar() { | |
remove_action( 'storefront_sidebar', 'storefront_get_sidebar', 10 ); | |
} | |
add_action( 'get_header', 'remove_storefront_sidebar' ); |
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
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