Skip to content

Instantly share code, notes, and snippets.

@digamber89
Created December 8, 2020 07:03
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/5f444d0bc209b08d3091dfe0cb676744 to your computer and use it in GitHub Desktop.
Save digamber89/5f444d0bc209b08d3091dfe0cb676744 to your computer and use it in GitHub Desktop.
Turn on participants and hosts video by default
<?php
function cm_turn_on_video_settings( $meeting_params ) {
$meeting_params['option_host_video'] = true;
$meeting_params['option_participants_video'] = true;
return $meeting_params;
}
add_filter( 'vczapi_woo_addon_create_meeting_params', 'cm_turn_on_video_settings' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment