-
Well I see the content of your units , you are using s3bubble units and must be using an addon for this .The issue is that our units loads only the content not the whole page in course timeline page .
The s3 bubble plugin not able to detect the content and load the player .
IF you can ask the plugin author or developer to share the script that they are using to load the video then it may load the video properly .Hi I enabled iframe mode but its showing this error :
This Website has not been connected to an S3bubble account or has reached its hourly limit Status: 401.
can you please contact the plugin author or support to tackle this or some information why this is showing there , we are using REST api of wp system to fetch video content .2 . Well this is excerpt and its not the actual content of unit , to add content which is shown on course pursue screen please add the content here :
https://prnt.sc/WrMKqWwdwa2t1 . NO this excerpt was never shown in old v3 as well v4 . in such case please try adding this code in your wplms-customizer.php file in wplms customizer plugin :
add_filter('bp_course_api_get_user_course_status_item','check_exceprt',10,2); function check_exceprt($return, $request ){ $body = json_decode($request->get_body(),true); if(!empty($user)){ $course_id = $request['course']; $item_id = $request['id']; if(!empty($course_id) && !empty($item_id)){ $return['content'] = get_the_excerpt($item_id).'<br/>'.$return['content']; } } return $return; }
2 . It was in the s3 bubble settings .
-
This reply was modified 3 days, 16 hours ago by
Alex.
2 . Please try adding the widgets in student and instructor sidebars .
1 . please try this code :
add_filter('bp_course_api_get_user_course_status_item','check_exceprt',10,2); function check_exceprt($return, $request ){ $body = json_decode($request->get_body(),true); $course_id = $request['course']; $item_id = $request['id']; if(!empty($course_id) && !empty($item_id)){ $return['content'] = get_the_excerpt($item_id).'<br/>'.$return['content']; } return $return; }
-
This reply was modified 3 days, 16 hours ago by
You must be logged in to reply to this topic.