diff --git a/lms/djangoapps/discussion/config/__init__.py b/lms/djangoapps/discussion/config/__init__.py
index 2ab03ad9fc421593db632d22c1c55dd25004f79f..cdab9d0e0092d4466f70cecfba4c05dfdc77122c 100644
--- a/lms/djangoapps/discussion/config/__init__.py
+++ b/lms/djangoapps/discussion/config/__init__.py
@@ -8,4 +8,4 @@ from openedx.core.djangoapps.waffle_utils import WaffleFlag, WaffleFlagNamespace
 WAFFLE_FLAG_NAMESPACE = WaffleFlagNamespace(name='edx_discussions')
 
 # Waffle flag to enable the use of Bootstrap
-USE_BOOTSTRAP_FLAG = WaffleFlag(WAFFLE_FLAG_NAMESPACE, 'use_bootstrap')
+USE_BOOTSTRAP_FLAG = WaffleFlag(WAFFLE_FLAG_NAMESPACE, 'use_bootstrap', flag_undefined_default=True)
diff --git a/openedx/features/learner_profile/__init__.py b/openedx/features/learner_profile/__init__.py
index 32106375c973c7831c14b1e69db2083bb537143d..80875eefd0e859ba898acc16262d50b4d8da9941 100644
--- a/openedx/features/learner_profile/__init__.py
+++ b/openedx/features/learner_profile/__init__.py
@@ -11,3 +11,6 @@ WAFFLE_FLAG_NAMESPACE = WaffleFlagNamespace(name='learner_profile')
 # Waffle flag for showing a message about the new profile features.
 # TODO: LEARNER-2554: 09/2017: Remove flag once message is no longer needed.
 SHOW_PROFILE_MESSAGE = WaffleFlag(WAFFLE_FLAG_NAMESPACE, 'show_message')
+
+# Waffle flag to show achievements on the learner profile.
+SHOW_ACHIEVEMENTS_FLAG = WaffleFlag(WAFFLE_FLAG_NAMESPACE, 'show_achievements', flag_undefined_default=True)