Created
December 8, 2020 07:03
-
-
Save digamber89/5f444d0bc209b08d3091dfe0cb676744 to your computer and use it in GitHub Desktop.
Turn on participants and hosts video by default
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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