Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save AnanthFlycart/56a0a2cc397fc5a6ae3f5fc087456fa4 to your computer and use it in GitHub Desktop.

Select an option

Save AnanthFlycart/56a0a2cc397fc5a6ae3f5fc087456fa4 to your computer and use it in GitHub Desktop.
CUW: Remove item meta on emails
add_filter('woocommerce_order_item_get_formatted_meta_data', function($meta_data, $item) {
if (did_action('woocommerce_email_header')) {
if (did_action('woocommerce_email_header') != did_action('woocommerce_email_footer')) {
foreach ($meta_data as $key => $data) {
if (isset($data->key) && in_array($data->key, ['cuw_offer_text', 'cuw_discount_text'])) {
unset($meta_data[$key]);
}
}
}
}
return $meta_data;
}, 1000, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment