Skip to content

Instantly share code, notes, and snippets.

@srdco
srdco / fullwidth-all.txt
Last active December 19, 2020 01:25 — forked from jamiemarsland/gist:3835778210966604defa
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' );