Last active
January 17, 2024 15:31
-
-
Save Qubadi/bb55f067082b0874f9674c734a2df4a4 to your computer and use it in GitHub Desktop.
Jetappointment display only the start time
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
See tutorials here: https://www.youtube.com/watch?v=45TU3kpnlqk&t=2s | |
________________________________________________ | |
// Customize the time slot format for JetAppointment. | |
// This filter modifies the format of time slots to display only the start time. | |
add_filter( 'jet-apb/time-slots/slots-html/slot-time-format', function( $format ) { | |
$format = '%4$s'; | |
return $format; | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment