Skip to content

Instantly share code, notes, and snippets.

@techies23
Created November 28, 2022 05:09
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 techies23/65a3512f61cb89d28a28254e3d495d08 to your computer and use it in GitHub Desktop.
Save techies23/65a3512f61cb89d28a28254e3d495d08 to your computer and use it in GitHub Desktop.
Change registration confirmation title for Video Conferencing zoom pro plugin.
add_filter('vczapi_pro_registration_confirm_title', 'change_confirmation_title_20221128', 10, 2);
function change_confirmation_title_20221128( $topic, $details ) {
return 'Your title';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment