Created
August 18, 2020 03:00
-
-
Save robertdevore/6d53b9aeff91eb9a6a56ee8b3a14d555 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Delivery Times for WooCommerce checkout select default text | |
* | |
* Change the default text that gets displayed in the delivery times checkout select field | |
* | |
* @param string $text - the default text | |
* | |
* @return string | |
*/ | |
function acme_checkout_delivery_times_select_default_text( $text ) { | |
$text = ''; | |
return $text; | |
} | |
add_filter( 'dtwc_checkout_delivery_times_select_default_text', 'acme_checkout_delivery_times_select_default_text' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment