Please any idea on how to hide some fields in the registration page. I mean fields like "Highest level of education completed" and "Tell us why you're interested in {Platform Name}".
- I have tried modifying "/edx-ginkgo.2-2/apps/edx/edx-platform/lms/templates/register.html" and removing the html elements but this does not solve it.
- Have also set their respective REGISTRATION_EXTRA_FIELDS to hidden in my settings .
REGISTRATION_EXTRA_FIELDS = {
'confirm_email': 'hidden',
'level_of_education': 'hidden',
'gender': 'optional',
'year_of_birth': 'optional',
'mailing_address': 'optional',
'goals': 'hidden',
'honor_code': 'hidden',
'terms_of_service': 'hidden',
'city': 'hidden',
'country': 'hidden',
}
Am using ginkgo version.
Please help me out!
Thank you!