Sensei 1.12.1 is now available. This release patches some theme compatibility bugs introduced by Sensei 1.12.0, plus fixes a couple of other issues patched by some of our awesome third party developers.
Here’s what you’ll find in Sensei 1.12.1:
- Comments not displaying on Lesson page for unsupported themes
- Ensure comments are not displayed on archive pages
- AJAX requests from Course(s) dropdown on Edit Module screen sent too frequently (@lkraav)
- Fix i18n violations (@GaryJones)
Special thanks to @MustafaEltayeb for letting us know and helping us investigate the comment issues.
Theme Compatibility and You
If you’ve made any modifications to your theme in the past to enable it to work with Sensei, but have not explicitly declared support for it, it’s possible that your theme may not look as it did prior to Sensei 1.12.
To fix this, please ensure that you add the following code snippet to your theme, which formally declares Sensei support:
add_action( 'after_setup_theme', 'declare_sensei_support' );
function declare_sensei_support() {
add_theme_support( 'sensei' );
}