WooCommerce:添加隐藏的订单项元数据

时间:2016-03-16 22:54:50

标签: wordpress wordpress-plugin woocommerce metadata

我的印象是,如果您在meta_key中添加下划线,则会从管理员和随后的订单收据等中隐藏它。

但是,我的正在展示?我不明白发生了什么......

meta_key:_testing_this,meta_value:asdasdasd

如何在没有出现的情况下添加订单商品元素?

2 个答案:

答案 0 :(得分:0)

如果我理解正确,要隐藏订单元数据,您可以使用现有的挂钩Hidden Order Item Meta

您可以将它添加到functions.php或存储自定义项的任何位置:

add_filter( 'woocommerce_hidden_order_itemmeta', 'add_your_hidden_order_items' );
function add_your_hidden_order_items( $order_items ) {
    $order_items[] = '_testing_this';
    // any other entries you want to hide..
    return $order_items;
}

我不确定这会从管理视图中删除元数据。在查看this post about customizing the order meta box时可能值得。

我希望这会有所帮助。

答案 1 :(得分:0)

答案是序列化您想要隐藏的数据。