How change the delivery date label in the email and hide shipping information
If you want to change the delivery date label in the email and hide shipping information please add this custom code in your functions.php
add_filter( 'ywcdd_show_date_shipping_details', '__return_false' );
if( !function_exists( 'ywcdd_change_date_label')) {
add_filter( 'ywcdd_change_delivery_date_label', 'ywcdd_change_date_label' );
function ywcdd_change_date_label() {
return __( 'Your custom label', 'yith-woocommerce-delivery-date' );
}
}