【发布时间】:2020-04-16 22:25:12
【问题描述】:
我在 Anariel 主题上安装了 Woocommerce。我遇到的问题是侧边栏显示在列表页面和产品详细信息页面上。我尝试了一些要删除的东西,但似乎没有任何效果。我应该怎么做才能删除它?谢谢!
【问题讨论】:
标签: wordpress woocommerce woocommerce-theming
我在 Anariel 主题上安装了 Woocommerce。我遇到的问题是侧边栏显示在列表页面和产品详细信息页面上。我尝试了一些要删除的东西,但似乎没有任何效果。我应该怎么做才能删除它?谢谢!
【问题讨论】:
标签: wordpress woocommerce woocommerce-theming
试试这个。
add_action( 'wp', 'disable_woo_commerce_sidebar' );
function disable_woo_commerce_sidebar() {
if ( is_product() || is_shop() ) {
remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10 );
}
}
如果您想在所有页面中隐藏侧边栏。试试下面的代码。
function disable_woo_commerce_sidebar() {
remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10);
}
add_action('init', 'disable_woo_commerce_sidebar');
【讨论】: