Hi. How can we help?

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' );
}
}
Was this article helpful?
1 out of 3 found this helpful

Back to Help Center >