Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robertdevore/6d53b9aeff91eb9a6a56ee8b3a14d555 to your computer and use it in GitHub Desktop.
Save robertdevore/6d53b9aeff91eb9a6a56ee8b3a14d555 to your computer and use it in GitHub Desktop.
<?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