diff --git a/lms/templates/portal/course_about.html b/lms/templates/portal/course_about.html
index afecc2f795..bdea0a47d1 100644
--- a/lms/templates/portal/course_about.html
+++ b/lms/templates/portal/course_about.html
@@ -62,7 +62,20 @@
%if user.is_authenticated():
%if registered:
+ <%
+ if course.has_started() or settings.MITX_FEATURES['DISABLE_START_DATES']:
+ course_target = reverse('info', args=[course.id])
+ else:
+ course_target = reverse('about_course', args=[course.id])
+ show_link = settings.MITX_FEATURES.get('ENABLE_LMS_MIGRATION')
+ %>
+ %if show_link:
+
+ %endif
You are registered for this course (${course.number}).
+ %if show_link:
+
+ %endif
%else:
Register for ${course.number}