Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shameemreza/13e13e0f5d77da24230f3fe5e74e1c67 to your computer and use it in GitHub Desktop.
Save shameemreza/13e13e0f5d77da24230f3fe5e74e1c67 to your computer and use it in GitHub Desktop.
Remove Sidebar on Single Product Page for Storefront Theme
add_action( 'get_header', 'srdev_remove_storefront_sidebar' );
function srdev_remove_storefront_sidebar() {
if ( is_product() ) {
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