Skip to content

Instantly share code, notes, and snippets.

@rynaldos-zz
Created May 19, 2016 11:21
Show Gist options
  • Save rynaldos-zz/1d0c09fcfc541f2c8c1bb761ad886d78 to your computer and use it in GitHub Desktop.
Save rynaldos-zz/1d0c09fcfc541f2c8c1bb761ad886d78 to your computer and use it in GitHub Desktop.
Remove sidebar from shop page (Storefront)
/* Remove Sidebar from Shop Page */
add_action( 'get_header', 'remove_storefront_sidebar' );
function remove_storefront_sidebar() {
if ( is_shop() ) {
remove_action( 'storefront_sidebar', 'storefront_get_sidebar', 10 );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment