// REMOVE SIDEBAR OF GENESIS CHECKOUT CART and MY ACCOUNT PAGE
add_filter( 'genesis_site_layout', 'woocommerce_page_layout' );
function woocommerce_page_layout() {
if ( is_page( array( 'cart', 'checkout', 'my-account' ) ) || is_shop() || 'product' == get_post_type() || is_woocommerce() ) {
return 'full-width-content';
}
}