Version 1.2 Bug Fixes: Fix added for force unit duration was executing even the setting was disabled Filter applied for multisite for usermeta table
WPLMS Unit Timings 1.1
Version 1.1 Feature Added A new setting is added in LMS > Settings After Enabling this setting, the student cannot access the unit after the time spent by the student viewing the unit has crossed the unit duration value. Example: If the unit duration is 6min, after 6 minutes, the […]
WPLMS Appointments Update 1.4.1
Version 1.4.1 Bug Fix: Once availability schedule is saved, after changing the time and clicking save button again was not updating the values in database is fixed
WPLMS Appointments Update 1.4
Version 1.4 Bug Fixes: Button Text Change of the Schedule Popup to avoid confusion Remove Schedule On clicking Set date Showing Error Disable Overlay in the walkthrough for the popup window A Welcome Screen Added in walkthrough: If Someone Click on that then all the steps will be completed by […]
WPLMS Appointments Update 1.3
Version 1.3 Bug Fixes: Security Key passed in api call which fetch the data of instructing appointments tab Security key passed in api call of join meeting View Profile button in directory is now redirecting to the user profile Clicked Schedule will be highlighted in the schedule calendar tab Book […]
WPLMS Appointments Update 1.2
Version 1.2 Bug Fixes: In Appointments Directory show text per slot with slot price Logged in as student when access the appointments tab of an instructor the buddypress menus are not visible fixed Update Meeting args only when meeting is created Created Meeting Activity recorded Show Hide Filters added in […]
WPLMS Appointments Update 1.1
Version 1.1 Bug Fixes: Video Popup in Directory not working Deactivating the License fix for referrer
Book Instructor in WPLMS Appointments
How to Add Availability Schedule? Go to Instructor’s Profile, a tab(Appointments) will appear there. Under Appointments tab there are 4 sub-tabs. Click on Settings tab and add availability schedule Set date and time and click on save availability schedule button. Once the schedule set, it will be appeared like this […]
Introduction to WPLMS Appointments
What is Appointments? An Appointment in simple language is defined as an arrangement to meet someone at a particular time and place. The main objective of this addon is to set a time for a task. Instructors can set the date and time of their availability so that students can […]
Hide Check Answer from Large Text Ques
Go to wp-admin > Plugins > Editor > Select WPLMS Customizer Plugin > wplms-customizer.php And Paste the code at the end before ?> add_action(‘wplms_quiz_question’,’hide_check_answer_from_large_text_ques’, 1); function hide_check_answer_from_large_text_ques($ques_id){ $getmeta = get_post_meta($ques_id,’vibe_question_type’,true); if($getmeta == ‘largetext’) { $actions = BP_Course_Action::init(); remove_action(‘wplms_quiz_question’,array($actions,’check_answer’),10,2); } }