HOW TO HIDE EXTRA FIELDS ON OPEN EDX


  • Search for file: ~/edx-ginkgo.2-2/apps/edx/config/lms.env.json
  • Modify the "REGISTRATION_EXTRA_FIELDS" dict to look like below "REGISTRATION_EXTRA_FIELDS": {

        "city": "hidden",
        "confirm_email": "hidden",
        "country": "hidden",
        "gender": "hidden",
        "goals": "hidden",
        "honor_code": "hidden",
        "level_of_education": "hidden",
        "mailing_address": "hidden",
        "terms_of_service": "hidden",
        "year_of_birth": "hidden"
    }

  • Save and restart services
  • Regards!!

Comments