Skip to content

Instantly share code, notes, and snippets.

@nutsandbolts
Created August 6, 2015 18:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nutsandbolts/f141c7563a9ec9f585e7 to your computer and use it in GitHub Desktop.
Save nutsandbolts/f141c7563a9ec9f585e7 to your computer and use it in GitHub Desktop.
Remove sidebar on Woo pages
//* Remove sidebar on WooCommerce pages
add_filter( 'genesis_site_layout', 'nabm_woocommerce_layout' );
function nabm_woocommerce_layout() {
if ( nabm_is_woocommerce() ) {
return 'full-width-content';
}
}
function nabm_is_woocommerce() {
return is_shop() || is_product_taxonomy() || is_page( array( 'my-account', 'cart', 'checkout' ) ) || is_product();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment