Hi, im trying to enable certificates on my open edx platform, i already modified the 'CERTIFICATES_HTML_VIEW': true, in lms.env.json and cms.env.json and the configuration through the django admin.
When I go to certificates under the settings dropdown in my course it says "This course does not use a mode that offers certificates.", I already added the HTML view configuration and selected enabled and saved it under this configuration:
{
"default": {
"accomplishment_class_append": "accomplishment-certificate",
"platform_name": "YourPlatformName",
},
"honor": {
"certificate_type": "honor",
"certificate_title": "Honor Certificate",
"document_body_class_append": "is-honorcode"
},
"verified": {
"certificate_type": "verified",
"certificate_title": "Verified Certificate",
"document_body_class_append": "is-idverified"
},
"base": {
"certificate_type": "base",
"certificate_title": "Certificate of Achievement",
"document_body_class_append": "is-base"
},
"distinguished": {
"certificate_type": "distinguished",
"certificate_title": "Distinguished Certificate of Achievement",
"document_body_class_append": "is-distinguished"
}
}
Thanks in advance.