Skip to content

Instantly share code, notes, and snippets.

@Qubadi
Last active January 17, 2024 15:31
Show Gist options
  • Save Qubadi/bb55f067082b0874f9674c734a2df4a4 to your computer and use it in GitHub Desktop.
Save Qubadi/bb55f067082b0874f9674c734a2df4a4 to your computer and use it in GitHub Desktop.
Jetappointment display only the start time
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