From d583e3487d44d2bf2e86512b8ebbb08e854b753a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Holger=20Ko=CC=88nemann?= Date: Sat, 11 Feb 2017 09:07:40 +0100 Subject: [PATCH] remove custom woo commerce integration and replace with default --- global-templates/left-sidebar-check.php | 21 +------- page.php | 17 ------ search.php | 2 +- woocommerce.php | 72 +++++++++++++++++++++++++ 4 files changed, 75 insertions(+), 37 deletions(-) create mode 100644 woocommerce.php diff --git a/global-templates/left-sidebar-check.php b/global-templates/left-sidebar-check.php index 7e02ebb..c733027 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 1aff6ad..09f8055 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; - } -} ?>
diff --git a/search.php b/search.php index d7501f1..63c0899 100644 --- a/search.php +++ b/search.php @@ -11,7 +11,7 @@ $container = get_theme_mod( 'understrap_container_type' ); $sidebar_pos = get_theme_mod( 'understrap_sidebar_position' ); ?> -
+
diff --git a/woocommerce.php b/woocommerce.php new file mode 100644 index 0000000..0d188f1 --- /dev/null +++ b/woocommerce.php @@ -0,0 +1,72 @@ + + +
+ +
+ +
+ + + + +
+ + + + + + + +
+ +
+ + + + + + + + + +
+ +
+ +
+ + \ No newline at end of file