mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
https://stackoverflow.com/questions/78364224/hide-selected-order-item-meta-from-woocommerce-emails
9 lines
427 B
Text
9 lines
427 B
Text
add_filter( 'woocommerce_order_item_get_formatted_meta_data', 'unset_specific_order_item_meta_data', 10, 2);
|
|
function unset_specific_order_item_meta_data($formatted_meta, $item){
|
|
// Only on emails notifications
|
|
foreach( $formatted_meta as $key => $meta ){
|
|
if( in_array( $meta->key, array('_pre_order_date') ) ) // Corrected key name
|
|
unset($formatted_meta[$key]);
|
|
}
|
|
return $formatted_meta;
|
|
}
|