0

我正在使用 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' ); 到functions.php
  3. 从主题/sidebar.php 文件中删除 get_sidebar()
  4. 从 template_hooks.php 中删除 add_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10 );这些都不起作用,我不知道为什么。
4

0 回答 0