Skip to content

Instantly share code, notes, and snippets.

@MrVibe
Created September 13, 2021 06:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MrVibe/c17b7410e5d89ee324cbd1d2218a3669 to your computer and use it in GitHub Desktop.
Save MrVibe/c17b7410e5d89ee324cbd1d2218a3669 to your computer and use it in GitHub Desktop.
Remove Course Tabs from Single course view in Enrolled courses
add_filter('wplms_get_course_tabs',function($tabs){
unset($tabs['announcementsnews']);
unset($tabs['qna']);
unset($tabs['notes']);
return $tabs;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment