How to disable lesson excerpt on the course syllabus
By default, an excerpt (short preview text) of a lesson will only appear if a manual excerpt has been added. However, some themes or plugins may insert an excerpt regardless.
To disable this, you can use the following snippet:
// Don't copy this line! /** * llms_show_preview_excerpt.php * * @since 2016-11-28 */ // disables lesson short description in the lesson preview tiles add_filter( 'llms_show_preview_excerpt', '__return_false' );