great support…..
I have solved the problem myself, this code in the functions.php file of the childtheme hides all delivery sheduls information
<?php
add_action('woocommerce_add_order_item_meta', 'bg_wooCommerceAddOrderItemDataAction', 20, 2);
function bg_wooCommerceAddOrderItemDataAction($item_id, $values)
{
wc_delete_order_item_meta( $item_id, 'Delivery schedule' );
}
-
This reply was modified 4 years, 1 month ago by team88.