diff --git a/global-templates/left-sidebar-check.php b/global-templates/left-sidebar-check.php index 7e02ebbf..c733027b 100644 --- a/global-templates/left-sidebar-check.php +++ b/global-templates/left-sidebar-check.php @@ -9,26 +9,9 @@ - + + diff --git a/page.php b/page.php index 1aff6ad7..09f80557 100644 --- a/page.php +++ b/page.php @@ -14,24 +14,7 @@ get_header(); $container = get_theme_mod( 'understrap_container_type' ); $sidebar_pos = get_theme_mod( 'understrap_sidebar_position' ); -// On WooCommerce pages there is no need for sidebars as they leave -// too little space for WooCommerce itself. We check if WooCommerce -// is active and the current page is a WooCommerce page and we do -// not render sidebars. -$is_woocommerce = false; -$this_page_id = get_queried_object_id(); -if ( class_exists( 'WooCommerce' ) ) { - if ( is_woocommerce() || is_shop() || get_option( 'woocommerce_shop_page_id' ) === $this_page_id || - get_option( 'woocommerce_cart_page_id' ) == $this_page_id || get_option( 'woocommerce_checkout_page_id' ) == $this_page_id || - get_option( 'woocommerce_pay_page_id' ) == $this_page_id || get_option( 'woocommerce_thanks_page_id' ) === $this_page_id || - get_option( 'woocommerce_myaccount_page_id' ) == $this_page_id || get_option( 'woocommerce_edit_address_page_id' ) == $this_page_id || - get_option( 'woocommerce_view_order_page_id' ) == $this_page_id || get_option( 'woocommerce_terms_page_id' ) == $this_page_id - ) { - - $is_woocommerce = true; - } -} ?>