Created
March 26, 2025 03:04
-
-
Save pramodjodhani/c8eb5c3526887312f96c4d96485eb850 to your computer and use it in GitHub Desktop.
Iconic WDS - Disable ASAP timeslot for other than today's date
This file contains 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 | |
// Iconic WDS - Disable ASAP timeslot for other than today's date | |
function iconic_wds_filter_out_asap_timeslot( $slots, $ymd ) { | |
$date_ymd = filter_input( INPUT_POST, 'date', FILTER_SANITIZE_FULL_SPECIAL_CHARS ); | |
if ( $date_ymd !== wp_date( 'Ymd' ) ) { | |
$slots = array_filter( $slots, function( $slot ) { | |
return empty( $slot['asap'] ); | |
} ); | |
$slots = array_values( $slots ); | |
} | |
return $slots; | |
} | |
add_filter( 'iconic_wds_slots_available_on_date', 'iconic_wds_filter_out_asap_timeslot', 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment