woocommerce remove_action无效,无法删除右侧边栏

时间:2016-11-02 21:42:09

标签: wordpress woocommerce sidebar wordpress-hook

我正在使用woocommerce插件和Wordpress。我只需要在一个页面上删除侧边栏(我有联系页面,我不希望它显示)。 这是我到目前为止所尝试的:

  1. remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10 );添加到functions.php
  2. 添加function woocommerce_remove_sidebar_shop() { if( is_page('Contact')){ remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10 ); } } add_action( 'template_redirect', 'woocommerce_remove_sidebar_shop' ); to functions.php
  3. 从themes / sidebar.php文件中删除get_sidebar()
  4. 从template_hooks.php中删除add_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10 ); 这些都不起作用,我不知道为什么。

0 个答案:

没有答案