Certificate Management
-
- FormaLms User
- Posts: 78
- Joined: Sun Jul 20, 2014 4:19 pm
- Version: Docebo CE 3.6
Certificate Management
I am having an issue with certificates. We have always used the certificate, and have used the tags in the template. All of the tags work, except for the tag: [course_score_final]. That has always worked for us in Docebo, but now is not working. All other tags DO work on the certificate. Does anybody have some help for me?
Re: Certificate Management
Hi,
from what you are describing it may have to to with the fixes we brought into FormaLms gradebook, which apparently caused some minor things not to work as expected.
I will urge our colleagues to have a look into this issue, since a new release is due to come out pretty soon, and it would be nice if this fix would be included.
from what you are describing it may have to to with the fixes we brought into FormaLms gradebook, which apparently caused some minor things not to work as expected.
I will urge our colleagues to have a look into this issue, since a new release is due to come out pretty soon, and it would be nice if this fix would be included.
---------------------
Massimiliano Ferrari
Elearnit - Elearning e Knowledge Management
https://www.elearnit.net
https://www.linkedin.com/in/massimilianoferrari
m.ferrari[at]elearnit.net
Skype: m_ferrari_it
Massimiliano Ferrari
Elearnit - Elearning e Knowledge Management
https://www.elearnit.net
https://www.linkedin.com/in/massimilianoferrari
m.ferrari[at]elearnit.net
Skype: m_ferrari_it
-
- FormaLms User
- Posts: 78
- Joined: Sun Jul 20, 2014 4:19 pm
- Version: Docebo CE 3.6
Re: Certificate Management
Thanks Max. Do you know what other tag I can use so that the course final grade is showing? (I noticed in the user details there is a total score).
-
- FormaLms User
- Posts: 78
- Joined: Sun Jul 20, 2014 4:19 pm
- Version: Docebo CE 3.6
Re: Certificate Management
Does anybody have a fix for me on this? The reason this is important for my students is because when they complete a course, we issue a certificate (we call it report card). On the report card all tags work, except the last tag. Here are the tags:
This is to certify that
[firstname] [lastname] - this works fine
has completed the course:
[course_name] - this works fine
at Orion High School on
[date_complete] - this works fine
and earned a final grade of
[course_score_final] - THIS DOES NOT WORK and is the most important detail for our students
---
I have tried other tags, but none work. When I pull a user's information, I can see the final grade, under, "total score"
Help!
This is to certify that
[firstname] [lastname] - this works fine
has completed the course:
[course_name] - this works fine
at Orion High School on
[date_complete] - this works fine
and earned a final grade of
[course_score_final] - THIS DOES NOT WORK and is the most important detail for our students
---
I have tried other tags, but none work. When I pull a user's information, I can see the final grade, under, "total score"
Help!
Re: Certificate Management
Hi Joseph,
I "upped" this request with the developers, we'll try to get back to this issue asap.
I "upped" this request with the developers, we'll try to get back to this issue asap.
---------------------
Massimiliano Ferrari
Elearnit - Elearning e Knowledge Management
https://www.elearnit.net
https://www.linkedin.com/in/massimilianoferrari
m.ferrari[at]elearnit.net
Skype: m_ferrari_it
Massimiliano Ferrari
Elearnit - Elearning e Knowledge Management
https://www.elearnit.net
https://www.linkedin.com/in/massimilianoferrari
m.ferrari[at]elearnit.net
Skype: m_ferrari_it
- CisterNino
- FormaLms User
- Posts: 73
- Joined: Mon May 06, 2013 2:59 pm
Re: Certificate Management
Hi Drgallegos,
here is a patch to correct the problem with the [course_score_final] parameter in the certificate.
Unzip the zip file and overwrite on \appLms\lib\certificate\certificate.userstat.php file.
Let me know if it is ok or if you still have problem with this issue.
here is a patch to correct the problem with the [course_score_final] parameter in the certificate.
Unzip the zip file and overwrite on \appLms\lib\certificate\certificate.userstat.php file.
Let me know if it is ok or if you still have problem with this issue.
- Attachments
-
- certificate.userstat.zip
- patch
- (2.47 KiB) Downloaded 326 times
I'm Livio, the Two. If you need, you can contact the one.
-
- FormaLms User
- Posts: 78
- Joined: Sun Jul 20, 2014 4:19 pm
- Version: Docebo CE 3.6
Re: Certificate Management
CisterNino,
Thank you thank you thank you!!!!
JG
Thank you thank you thank you!!!!
JG
Re: Certificate Management
Ciao, quelli precedenti, ovvero:
mi sembrano tutti invertiti (scambiare id_course e id_user), inoltre modificherei:
con:
o float, in base alle esigenze.
Code: Select all
$subs['[test_score_start]'] = ( isset($score_start[$this->id_course][$this->id_user]) ? $score_start[$this->id_course][$this->id_user]['score'] : '' );
$subs['[test_score_start_max]'] = ( isset($score_start[$this->id_course][$this->id_user]) ? $score_start[$this->id_course][$this->id_user]['max_score'] : '' );
$subs['[test_score_final]'] = ( isset($score_final[$this->id_course][$this->id_user]) ? $score_final[$this->id_course][$this->id_user]['score'] : '' );
$subs['[test_score_final_max]'] = ( !empty($score_final[$this->id_course][$this->id_user]['max_score'] )
? $score_final[$this->id_course][$this->id_user]['max_score']
: '100' );
Code: Select all
$subs['[course_score_final]'] = ( isset($score_course[$this->id_user][$this->id_course]) ? $score_course[$this->id_user][$this->id_course]['score'] : '' );
$subs['[course_score_final_max]'] = ( isset($score_course[$this->id_user][$this->id_course]) ? $score_course[$this->id_user][$this->id_course]['max_score'] : '' );
Code: Select all
$subs['[course_score_final]'] = ( isset($score_course[$this->id_user][$this->id_course]) ? (int)$score_course[$this->id_user][$this->id_course]['score'] : '' );
$subs['[course_score_final_max]'] = ( isset($score_course[$this->id_user][$this->id_course]) ? (int)$score_course[$this->id_user][$this->id_course]['max_score'] : '' );