可能的 woocommce 错误一直在 metabox "custom field" add/edit 产品页面中显示 "total_sales"?

possible woocommce bug keep showing "total_sales" in metabox "custom field" add/edit product page?

如 edit/add 产品页面所示,此项目 "total_sales" 始终显示在默认元数据框 "custom field" 中。 它还没有造成任何伤害,但很烦人。 但是,有人可能会不小心编辑了总销售数字,从而导致问题。

我正在编写 storeFront 的子主题。 这是 woocommerce 中的错误还是我不小心更改了导致此错误的地方?

这是默认设置。如果您认为这是一个错误,那么您可以随时在 https://github.com/woocommerce/woocommerce/issues

上发帖

EDIT

Custom fields or post meta entries can be hidden from the by default in Wordpress available »Custom Fields«-Metabox by prefixing them with a underscore - _ - as noted here

如果你想隐藏字段你可以使用我为你写的这段代码

function filter_is_protected_meta( $protected, $meta_key, $meta_type ) {    
    if ( $meta_key == 'total_sales' ) {
        $protected = true;
    }

    return $protected; 
}
add_filter( 'is_protected_meta', 'filter_is_protected_meta', 10, 3 );