将 WooCommerce 的“重量”属性文本标签更改为“发货重量”

Change WooCommerce "Weight" attribute text label to "Shipping Weight"

提问人:DaedHunter 提问时间:11/17/2023 最后编辑:halferDaedHunter 更新时间:11/17/2023 访问量:35

问:

我正在尝试更改 WooCommerce 中权重属性的标签。默认情况下,它显示“重量”,但我希望它显示“发货重量”。标签“尺寸”也是如此。我可以使用 Loco Translate 并进行自定义翻译,但更喜欢使用代码。

我找到了以下片段,但它没有改变任何东西。是因为我用的是德文版吗?我尝试用“gewicht”代替“weight”,但没有帮助。

function change_woocommerce_display_product_attributes_label( $product_attributes, $product ){
    if( isset( $product_attributes['weight'] ) ){
        $product_attributes['weight']['label'] = __( 'Shipping Weight', 'woocommerce' );
    }
    return $product_attributes;
}
add_filter( 'woocommerce_display_product_attributes', 'change_woocommerce_display_product_attributes_label', 10, 2 );
PHP 的WooCommerce

评论

0赞 LoicTheAztec 11/17/2023
该代码在上一个 WooCommerce 版本中工作,因此问题可能来自您的主题自定义、第三方插件或您自己以前的自定义......

答: 暂无答案