【问题标题】:Removing sidebar from product page从产品页面中删除侧边栏
【发布时间】:2020-04-16 22:25:12
【问题描述】:

我在 Anariel 主题上安装了 Woocommerce。我遇到的问题是侧边栏显示在列表页面和产品详细信息页面上。我尝试了一些要删除的东西,但似乎没有任何效果。我应该怎么做才能删除它?谢谢!

【问题讨论】:

    标签: wordpress woocommerce woocommerce-theming


    【解决方案1】:

    试试这个。

    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');
    

    【讨论】:

      猜你喜欢
      • 2015-11-16
      • 1970-01-01
      • 2014-10-31
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2018-08-18
      • 2023-03-13
      • 1970-01-01
      相关资源
      最近更新 更多