Help with Certificates on exam

Home Forums Legacy Support Support queries Setup issues Help with Certificates on exam

Viewing 15 posts - 31 through 45 (of 50 total)
  • Author
    Posts
  • #380159
    kubestudio
    Participant
    You mean this button that says terminar modulo? https://prnt.sc/26x2kbd clicking there brings us to here : https://prnt.sc/26x2k92 it says please complete the.. but all modules are completed.. maybe thats the issue. Again please just do it.. getting tired of the back and forth, and if you have to charge me for it so let me know how much but we need this done THIS WEEK
    #380241
    Anshuman Sahu
    Keymaster
    This reply has been marked as private.
    #380260
    kubestudio
    Participant
    Hi We still have issues. 1) We now manage to get the certificate to be assigned to the user but this doesnt happens only by approving the exam. we still need to complete ALL UNITS ONE BY ONE. As we said we need that a user that DID NOT WATCH ANY UNITS and passes the exam gets certificate. 2) How do we define how much % they need to have in the exam to get certificate? we want it to be 80/100 minimum if not, certificate is not assigned. we don't see where to add this value... is it on the course page ? can you screenshot how to set this up?? 3) We still have issues with the side bar where we want certificates to appear once they have them. Right now we do this : https://prnt.sc/26xx3od we setup a budypress user profile access on a menu and placed that menu on the course widget bar. This goes to user profile and once there we HIDE everything except the certificates : https://prnt.sc/26xx4cr We would like to have a widget that shows those certificates, and even better if its a shortcde so we can place it in other areas of the site. Can you please finish fixing these 3 things? i repeat to make it very clear 1.- Users should not need to complete units, but just exam to finish course and get certificate ( if the exam result is good enough ) 2.- How do we setup what result the exam needs to have to award certificate 3.- We need certificates to show on side bar once awarded. Waiting for your response thanks
    #380323
    Anshuman Sahu
    Keymaster
    1 . Well with the custom code we provided you student just need to hit the "Finish course" button there on the course status page lower left . if your courses cetralised with quizzes only then you can use : https://wplms.io/support/knowledge-base/quiz-certificate/ to show certificates anywhere of the current logged in user you can use : [show_certificates] shortcode.
    #380433
    kubestudio
    Participant
    Hey thanks for the answer.. seems like the Quiz certificate addon is what we were looking for. Although we still get that users need to complete all units to complete course. Your custom code was suposed to achieve that but it doesnt. We also tried that shortcode and doesnt work.. can you show us how to use the shortcode? cse we pasted it in a elementor template and in the course sidebar and can't get it to work either place. Right now only things missing is that the showcertificate shortcode works and that user DOES NOT need to complete all units to complete course. As soon as they do the exam they should get the course completed ( automatically ) Please fix this asap as we would like to have it ready this week! thanks
    #380472
    kubestudio
    Participant
    Hi can we get an answer to finish this off? thanks
    #380481
    kubestudio
    Participant
    WE have another issue : When a user has a course complete, videos are not playing, while his status is different they can see. https://prnt.sc/_qHPFOb3o2wH here user has completed course ( and can see content since we have already allowed to see old courses ) its just the video player not loading for some reason. If the user is NOT COMPLETE ( any other status ) they can see videos without problem. This only happens if they go to the course through the button that says Course complete, if they access through curriculum there is no problem. We want to take away the Details button on units on curriculum https://prnt.sc/I7_BrZ7Zj8Jo how can we do that? And most important the other two issues we reported yesterday that we REALLY need asap : 1) Users still need to click unit by unit as complete to be able to finish course and get certificate, we want them to only have to do exam and no need to check each unit individually. 2) shortcode to show certificates doesnt work for us Thanks!
    #380489
    Anshuman Sahu
    Keymaster
    1 . Im sorry there was some mistake in code given please try this code instead :
    add_filter('wplms_finish_course_check',function( $flag,$curriculum){
    	if(!empty($curriculum)){
    		foreach ($curriculum as $key => $c) {
    			if(is_numeric($c)){
    				if(get_post_type($c) =='quiz'){
    					$s = bp_course_get_user_quiz_status(get_current_user_id(),$c);
    					if(empty($s) || $s<4){
    						$flag=$c;
    						break;
    					}
    				}
    			}
    		}
    	}
    	$flag=false;
    	return $flag;
    },999999,2);
    2 . please use : https://wplms.io/support/knowledge-base/students-certificates-shortcode/
    #380490
    kubestudio
    Participant
    Where to put that code?? Can you just add both codes? will be much simplier and faster.. dont make me wait another two days.
    #380545
    kubestudio
    Participant
    Ok This is starting to work better. we added the code you suggested and mostly works. Thanks for that New issues : 1) https://prnt.sc/pLGUjoSQba49 as you see the certificate works now as we wanted. but when you click on it opens light box and gets stuck https://prnt.sc/swe75Phqhc-n If you right click open in new window it works how do we correct that? 2) About the custom code, now it works i can finish course without finishing units, but it does not requiere to have finished exam. i can finish without doing the exam. Can we make it so IT REQUIRES to do the exam? 3) Certificate not coming out well. as we mentioned before the resolution is not enough to print and looks blurry settings are this : https://prnt.sc/AoSpA63Tfhn3 if we change the size on the settings it shows CUT then, and we can't find a way to get it in high res to print but fitting the page. Please advise asap we need this to be finished this week. thanks
    #380558
    Anshuman Sahu
    Keymaster
    2 . again there is a mistake in code sorry for that.I partially tested it . remove all previous code and add this tested code :
    add_filter('wplms_finish_course_check',function( $flag,$curriculum){
    $stop = 0;
    	if(!empty($curriculum)){
    		foreach ($curriculum as $key => $c) {
    			if(is_numeric($c)){
    				if(get_post_type($c) =='quiz'){
    					$s = bp_course_get_user_quiz_status(get_current_user_id(),$c);
    					if(empty($s) || $s<4){
    						$stop=$c;
    						break;
    					}
    				}
    			}
    		}
    	}
    if($stop){$flag=$stop;}else{$flag=false;}
    	
    	return $flag;
    },999999,2);
    1 & 2 . the solution is to use the pdf certificates : https://wplms.io/downloads/wplms-pdf-certificates/ https://www.youtube.com/watch?v=d9mXInbmFGY&vl=en Also please make sure that your course has certificate template selected : https://gyazo.com/7cfe25842ac97ef4aa86c2cacdff9d6f
    #380612
    kubestudio
    Participant
    Hi alex, this is getting tiring, you send us wrong code like 4 times.. you mean to remove the code for that or also the code for the shortcode?? About the other two issues, WE ALREADY USING PDF CERTIFICATES !! can you please do it yourself? this is taking way too long, its been a MONTH. so much for premium support!! its really disapointing that you take two days to answer and again, you tell us to do something we already did 2 weeks ago. Our course doesnt has certificate selected because we certificate with QUIZ. so as i understand we need to add certificate template on the QUIZ not on the course. PLEASE FIX IT ALREADY, i think we overpaid for this quality of suppoort
    #380625
    Anshuman Sahu
    Keymaster
    This reply has been marked as private.
    #380630
    kubestudio
    Participant
    Hi thanks for your answer. I never said the code wasnt working, it was indeed but that took 4 modifications of the code when should been done rigth the first time don't you think? About the certificate i already explained what was wrong and now you changed it to open on new window so this is SOLVED, but this still doesnt makes our certificate right. RESOLUTION is still horrible, check this : https://www.jonhernandez.education/wp-content/uploads/2022/02/76776_1.pdf?1645716102 i opened a new thread explaining what we do and how we have serious issues to created PDF certificates even using all you said. right now this certificate is UNUSABLE due to the quality of it. can you check into that? if you want answer me in the other topic, https://wplms.io/support/forums/topic/certificate-pdf-builder-etc-its-the-worst-system-doesnt-work/ and honestly check the answers we got once every 24h...some times they where either wrong code, or not related to my questions. all together look at how long did it take to get it to do what we wanted, almost a whole month!! lets please fix the quality of the certificate so we can actually move on. all of us. thanks alex
    #380707
    kubestudio
    Participant
    Hi, Two small details to finish this off 1) https://prnt.sc/-QHUtr3XT3G5 on this screen you see the units, are clickable, but there is a button underneath that says DETALLES, when we click doesn nothing https://prnt.sc/KWZM6LiFfXJN Can we get rid of the detalles buttons? all of them? 2) once you send the exam you get this loading bar : https://prnt.sc/PDfS3DXAIykn this shows in the middle of the page, our exam is long down so would be better if it showed at the bottom of page, other wise user can be confused and not not whats taking so long. Can this be placed at the bottom of the page instead than in the middle of it? thanks
Viewing 15 posts - 31 through 45 (of 50 total)
  • The topic ‘Help with Certificates on exam’ is closed to new replies.