Repository › Forums › Support › Expiry dates for WooCommerce PRO › Hiding Expiry dates to customer cart but Not to admin › Reply To: Hiding Expiry dates to customer cart but Not to admin
Hi
Can’t find the dev version on my account.
We got new issue: the script doesn’t work on some emails. And for the ones that doesn’t work, the meta shown right now are 2, instead of 1, both showing the same value. E.g.:
wcxd_expiry_date: May 15, 2019
Expiry Date: May 15, 2019
Here’s the function we’re using right now:
add_filter( ‘woocommerce_order_item_get_formatted_meta_data’, ‘unset_specific_order_item_meta_data’, 20, 2);
function unset_specific_order_item_meta_data($formatted_meta, $item){
// Only on emails notifications
if( is_admin() )
return $formatted_meta;
foreach( $formatted_meta as $key => $meta ){
if( in_array( $meta->key, array(‘wcxd_expiry_date’,’_wcxd_expiry_date’) ) )
unset($formatted_meta[$key]);
}
return $formatted_meta;
}