Skip to content

Instantly share code, notes, and snippets.

@digamber89
Created September 27, 2022 09:24
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 digamber89/33cd8ed8f63564008fec5ee8636ce986 to your computer and use it in GitHub Desktop.
Save digamber89/33cd8ed8f63564008fec5ee8636ce986 to your computer and use it in GitHub Desktop.
Zoom WC Appointments - Change Meeting Title
<?php
add_filter( 'vczapi-woocommerce-appointments-meeting-topic', 'change_appointment_topic', 10, 3 );
function change_appointment_topic( $topic, $product_id, $appointment_id ) {
$topic = 'Appointment - ' . $appointment_id;
return $topic;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment