猿问

在没有插件的情况下自定义 WooCommerce 产品数据标签 - 重量

我想在后端和前端将产品元标签从“重量”更改为“平方英尺”。


我已经尝试了这个和几个 [数百] 变体但没有成功:


add_filter( 'woocommerce_register_post_type_product', 'custom_product_labels' );


function custom_product_labels( $args ) {

    //

    // change labels in $args['labels'] array

    //

    $args['labels']['_weight'] = 'Square Feet';

    return $args;

我已经成功地编辑了单位:


add_filter( 'woocommerce_product_settings', 'add_woocommerce_dimension_units' );


function add_woocommerce_dimension_units( $settings ) {

  foreach ( $settings as &$setting ) {


    if ( $setting['id'] == 'woocommerce_dimension_unit' ) {


      $setting['options']['feet'] = __( 'ft' );  // foot

    }


    if ( $setting['id'] == 'woocommerce_weight_unit' ) {


      $setting['options']['sq ft'] = __( 'sq ft' );  // square feet

    }

  }


  return $settings;

}

但我仍然不知道如何挂钩测量标签来编辑它们。重要的是要注意,我不想添加“平方英尺”的元单位,因为我们已经有数千个产品在重量字段中填充了平方英尺数据。


我的快速解决方法是在这些页面上找到实际代码并进行编辑。但这是一个糟糕的解决方案。


woocommerce/includes/admin/meta-boxes/views/html-product-data-shipping.php


woocommerce/includes/wc-formatting-functions.php


woocommerce/includes/wc-template-functions.php


编辑:这是一个显示使用的页面。 https://homedesigningservice.com/product/cape-house-plan-10034-cp/


提前感谢您拯救了我融化的大脑。:-)


幕布斯7119047
浏览 100回答 2
2回答

噜噜哒

您可以使用此代码段    add_filter( 'gettext', 'theme_change_comment_field_names', 20, 3 );function theme_change_comment_field_names( $translated_text, $text, $domain ) {                switch ( $translated_text ) {                    case 'Weight' :                        $translated_text = __( 'Square Feet', $domain );                        break;                    case 'weight' :                        $translated_text = __( 'Square Feet', $domain );                        break;                }            return $translated_text;     }

跃然一笑

Woo 有一个用于前端的过滤器,但没有用于更改后端标签的过滤器。所以使用下面的代码,它不会与任何其他标签冲突...... Lakshman 的 gettext 将改变站点中任何地方的权重......add_filter( 'woocommerce_display_product_attributes',&nbsp;&nbsp;'prefix_change_weight_label_to_square_feet', 10, 2 );&nbsp;function prefix_change_weight_label_to_square_feet( $product_attributes, $product ) {&nbsp; &nbsp;// Change Weight to Square Feet&nbsp; &nbsp;$product_attributes[ 'weight' ]['label'] = __('Square Feet');&nbsp; &nbsp;return $product_attributes;}// edit WEIGHT label to SQUARE FEETadd_action( 'admin_footer', function(){&nbsp; &nbsp;$currentPostType = get_post_type();&nbsp; &nbsp;if( $currentPostType != 'product' ) return;?>&nbsp; &nbsp;<script>&nbsp; &nbsp; (function($){&nbsp; &nbsp; &nbsp; &nbsp; $(document).ready(function(){&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ( jQuery('label[for="_weight"]').length ) {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; jQuery('label[for="_weight"]').text("Square Feet");&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; &nbsp; &nbsp; });&nbsp; &nbsp; })(jQuery);</script>&nbsp;<?php});
随时随地看视频慕课网APP
我要回答