【发布时间】:2021-11-01 16:26:42
【问题描述】:
我试图从带有 Storefront 主题的 woocommerce 上的“结帐”页面中删除面包屑。我在这里和其他地方查看了许多方法,但似乎没有一个有效。任何建议都将不胜感激。
这是我尝试过的几个不同的代码。我哪里错了?
add_action( 'init', 'wc_remove_storefront_breadcrumbs');
function wc_remove_storefront_breadcrumbs() {
if (is_page('checkout')){
remove_action( 'storefront_before_content', 'woocommerce_breadcrumb', 10 );
}
}
add_action( 'init', 'wc_remove_storefront_breadcrumbs');
function wc_remove_storefront_breadcrumbs() {
if (is_checkout()){
remove_action( 'storefront_before_content', 'woocommerce_breadcrumb', 10 );
}
}
【问题讨论】:
-
仅供参考,我将代码插入到我的子主题function.php中
标签: woocommerce breadcrumbs storefront