Live Streaming
Filters
add_filter( 'stm_lms_live_stream_allowed', 'stm_lms_live_stream_allowed_function' );
function stm_lms_live_stream_allowed_function($bool){
$user_id = get_current_user_id();
if($user_id == 1){
$bool == true;
}
return $bool;
}Last updated
Was this helpful?

