diff --git a/lms/djangoapps/courseware/date_summary.py b/lms/djangoapps/courseware/date_summary.py index 577c9daea166..c53d828568e4 100644 --- a/lms/djangoapps/courseware/date_summary.py +++ b/lms/djangoapps/courseware/date_summary.py @@ -481,6 +481,9 @@ def date(self): @property def title(self): + if getattr(settings, "CAMPUS_HIDE_DEADLINE_FOR_VERIFICATION", False): + return "" + dynamic_deadline = self._dynamic_deadline() if dynamic_deadline is not None: return _('Upgrade to Verified Certificate') diff --git a/lms/envs/common.py b/lms/envs/common.py index bfaef0d91d77..e20b90c08c5f 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -3474,6 +3474,7 @@ def _make_locale_paths(settings): ############### Custom settings Campus Romero ############### CAMPUS_BYPASS_VERIFICATION_SERVICE = True +CAMPUS_HIDE_DEADLINE_FOR_VERIFICATION = True ############## Plugin Django Apps #########################