我正在使用下面的代码从购物车和单一产品页面中删除woocommerce侧栏。
function urun_sidebar_kaldir() {
if ( is_product() || is_cart() ) {
remove_action( \'woocommerce_sidebar\', \'woocommerce_get_sidebar\', 10 );
}
}
add_action( \'woocommerce_before_main_content\', \'urun_sidebar_kaldir\' );
它可以在单个产品页面中工作,但不能在购物车页面中工作。我无法删除购物车页面中的侧栏。
//Update
我没有使用woocommerce.php 在主题主文件夹中。我的主题中有这个模板。
wp-content/themes/{current-theme}/woocommerce/cart/cart.php
我为cart创建了自定义teplate。然后我删除了get_sidebar(); 但侧边栏仍显示在购物车页面中。wp-content/themes/{current-theme}/page-cart.php
wp-content/themes/{current-theme}/page-checkout.php