【问题标题】:Woocommerce breadcrumbsWoocommerce 面包屑
【发布时间】:2018-08-25 18:20:06
【问题描述】:

我想更改标签档案上的默认 Woocommerce 面包屑。目前它们是“带有“...”标签的主页/产品”,我只想要“主页/标签名称”。

我找不到任何关于如何实现这一点的信息,Woo 文档只是解释了如何更改分隔符或更改“Home”一词。

【问题讨论】:

    标签: wordpress woocommerce breadcrumbs


    【解决方案1】:

    你可以在 wp-content\plugins\woocommerce\includes\class-wc-breadcrumb.php 中看到它

    私有函数 add_crumbs_product_tag() {

        $current_term = $GLOBALS['wp_query']->get_queried_object();
    
        $this->prepend_shop_page();
    
        /* translators: %s: product tag */
        $this->add_crumb( sprintf( __( 'Products tagged “%s”', 'woocommerce' ), $current_term->name ) );
    }
    

    如果您永久删除带有“%s”标签的产品,只需将'带有“%s”标签的产品更改为'%s'。确保您正在更改 woocommerce 的私有功能。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2013-07-05
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多