Skip to content

Instantly share code, notes, and snippets.

@PluginHive
Created November 29, 2019 05:34
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 PluginHive/d9dd983387d9a84bd86b380e3535da35 to your computer and use it in GitHub Desktop.
Save PluginHive/d9dd983387d9a84bd86b380e3535da35 to your computer and use it in GitHub Desktop.
hide booking end time in the booking info text
add_filter( 'ph_bookings_display_booking_end_time', 'check_display_booking_end_time' );
function check_display_booking_end_time( $default=true ) {
return false;
// return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment