Hi,
I am using edx ginkgo version, I had enable course Certificates and can able to preview certificate from Studio as Admin staff user, but when i View live version of that course and comes down to Instructor dashboard i can’t see Certificate Link after Analytics. i am using an Instructor-paced course.
Followings things i already done:
modify lms.env.json and cms.env.json, add following
CERTIFICATES_HTML_VIEW: true,
CERTIFICATES_INSTRUCTOR_GENERATION: true
Enabling Course Mode from Django admin
Course Studio Advanced Settings > Certificate Web/HTML View field set to true.
create certificate & add signature in Studio: Settings > Certificate
But i already have certificates activated in Course i can even preview it in Studio. But i am not getting Certificate Link in Instructor Dashboard at LMS.
Have you changed mode of the course for which you are not able to see the certificate in instructor tab? Set course mode to honor or verified, cause certificates are available in these modes only.
@chinmaybhatk@deep06 We recently ran into similar issues with certificates. Here are some tips that may help.
If the ‘Certificate’ tab is not shown on the instructor dashboard: in the Django Admin, navigate to “Certificates” > “Certificate generation configurations”, then select “Add certificate generation configuration”. Check “enabled” and save.
If you want to enable ‘Student-Generated Certificates’ for a self-paced course, but the button to enable it isn’t shown on the instructor dashboard “Certificates” tab: student generated certificates should be auto enabled for self-paced courses, and so the button is hidden. Sometimes though, there is a bug that causes student generated certificates to not be auto enabled for self-paced courses. There are two options when this happens:
Apply the patch from edx/edx-platform#23735 to unhide the button. Then you can click the button to enable student-generated certificates.
Perform an action from Studio that will trigger a publish event. For example, make a change to a unit and publish the changes. This should trigger the action to enable student-generated certificates. Note that this is simpler because it doesn’t require code changes, but it may not be reliable - option 1 is more reliable.
If you’re using this patch in production, please see this comment from the edX product team for options to move forward with addressing the underlying issue.