【问题标题】:Add text after shipping method label in woocommerce_package_rates hook在 woocommerce_package_rates 挂钩中的运输方式标签后添加文本
【发布时间】:2021-02-12 18:26:53
【问题描述】:

我的页面上有多个送货选项,当客户购买超过 2500 捷克克朗的商品时,我想在它们旁边贴上“免费”标签。

我正在使用Set all shipping methods costs to zero based on cart items subtotal in WooCommerce 回答代码,它使运输方式免费,但它没有在它们旁边贴上标签,实际上是“免费”。

我想将我的文字放在运输方式旁边 - 例如。 “联邦快递(免费)”。

我尝试实现这段代码:

$rates[$rate_key]->label = __("Here your text", "woocommerce");

但它只更改运输方式的标签,并没有将标签放在它旁边。

谢谢

【问题讨论】:

    标签: php wordpress woocommerce label shipping-method


    【解决方案1】:

    不要使用=,而是使用.=(连接赋值运算符)

    所以替换

    $rates[$rate_key]->label = __("Here your text", "woocommerce");
    

    $rates[$rate_key]->label .= __( 'Here your text', 'woocommerce' );
    

    【讨论】:

      猜你喜欢
      • 2018-02-12
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2014-04-18
      • 2018-03-17
      • 2021-09-12
      • 1970-01-01
      相关资源
      最近更新 更多