Open edX - Show Course Updates on Course Home Page

With the migration to the Hawthorn release, it was decided that course updates would no longer show on the course outline page. Why this decision was made, I will never understand. Student's are NOT going to click the Updates link every time they browse the course outline page just to check if there are new updates to the course. I found a discussion about this here: https://discuss.openedx.org/t/course-updates-converted-to-welcome-message-with-no-replacement-ouch/226

Looking through the source code, I was able to find a waffle flag that allows me to override this setting:

if LATEST_UPDATE_FLAG.is_enabled(course_key):
                update_message_fragment = LatestUpdateFragmentView().render_to_fragment(
                    request, course_id=course_id, **kwargs
                )

So, the functionality is still in the Ironwood release, it is just disabled by default. Again, I have NO IDEA why this would be the case. To override this setting, you can add a flag override this.

  1. Go to the Django admin site and click on Waffle flag course overrides under the Waffle_Utils section.
  2. Enter course_experience.latest_update in the Waffle Flag field.
  3. Enter the course ID in the Course ID field. (i.e. course-v1:UofW+CS115+2020_09).
  4. Select Force On from the Override Choice drop down.

Saving this setting will turn on the latest course updates on the course outline page.