Certificate to Packages courses

Home Forums Legacy Support Support queries Setup issues Certificate to Packages courses

Viewing 15 posts - 1 through 15 (of 18 total)
  • Author
    Posts
  • #319927
    IBSP
    Spectator
    Hello, When any student finishes his course and clicks on the finish button as with any regular curriculum-based course. The issue is with all courses that build with packages, for example, if we're using an HTML package inside the course, then when students click on the finish course button certificate is not assigning to the student. and I've been requesting this fix for a long time, and this issue is with all packages, also tried after deactivating third-party plugins and clearing cache but the same result. Kindly provide me the solution. Thanks
    #320110
    Anshuman Sahu
    Keymaster
    please try adding this given code in your wplms-customizer.php file in wplms customizer plugin :
    
    add_filter('wplms_course_student_marks',function($u_marks,$id,$user_id){
        $upload_course = get_post_meta($id,'vibe_course_package',true);
        if(!empty($upload_course )){
          
            return 100;
        }
        return $u_marks;
    },10,3);
    #320112
    Anshuman Sahu
    Keymaster
    also can you please share more details like what marks gets set for the user when the course is finished?
    #320435
    IBSP
    Spectator
    This didn't work for me, I added your given script https://prnt.sc/v5gjli But the screen stucks when students finish the course and review the course. Nothing appears after that https://prnt.sc/v5gkbq Nothing happens after this screen. Please give me the solution to fix this. Thanks
    #320590
    Anshuman Sahu
    Keymaster
    Sorry for the wrong code there is a bit mistake . here is the correct code :
    
    add_filter('wplms_course_student_marks',function($u_marks,$id,$user_id){
        $upload_course = get_post_meta($id,'vibe_course_package',true);
        if(!empty($upload_course )){
            $marks  = get_post_meta($id,$user_id,true);
            if(empty($marks)){
                return 100;
            }else{
                return $marks;
            }
            
        }
        return $u_marks;
    },10,3);
    #320606
    IBSP
    Spectator
    Hello sir, Sorry for bothering you again, this is not working for me, and facing many issues related to package courses, not only one specific course, this problem is with all package courses.
    1. Sometimes the course material doesn't appear at all https://prnt.sc/v61abv
    2. Mostly it opens my homepage instead of material https://prnt.sc/v61b0g
    3. When clicking on the profile name it redirects to profile instead of showing the profile menu. it immediately redirects to the profile page https://prnt.sc/v614zn
    4. This dialogue appears when we click on the finish this course button https://prnt.sc/v61hbi
    Please help me to fix this issue as more than half of the courses are build using packages. and it will be a massive issue for students Thanks
    #321148
    Anshuman Sahu
    Keymaster
    Hi this was an issue .fix added in wplms plugin update version 1.4.5+ yesterday .Please update and check
    #321475
    IBSP
    Spectator
    The issue is not yet fixed and facing a lot of other problems Still not working after clicking on the complete button this appears https://prnt.sc/v8vtns and nothing appears in achievement, I've the latest updates installed NOTE: Please yar solution provide kro itna time waste kr rhy ho every 24+ hours wait krna prta or solution phir ni milta. Thanks
    #321977
    Anshuman Sahu
    Keymaster
    Yes the issue has been replicated for the upload type courses .We are working on the fix ,please provide some time .
    #326704
    IBSP
    Spectator
    Any update on this? please provide a solution I specially upgraded my support for this issue as I discussed with you on Facebook. Provide solution otherwise, this support renewal is useless for me so kindly refund me. Thank You!
    #326895
    Anshuman Sahu
    Keymaster
    YEs this is fixed and will be available in the wplms plguin update coming with some other bug fixes and features.
    #328406
    IBSP
    Spectator
    Any update?
    #328637
    Anshuman Sahu
    Keymaster
    Yes update has been released with this fix
    #330250
    OpenCoursa
    Participant
    This reply has been marked as private.
    #330251
    OpenCoursa
    Participant
    This reply has been marked as private.
Viewing 15 posts - 1 through 15 (of 18 total)
  • The topic ‘Certificate to Packages courses’ is closed to new replies.