Skip to content

Instantly share code, notes, and snippets.

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 thomasplevy/1d57eb5adf33c05739bd14573c546613 to your computer and use it in GitHub Desktop.
Save thomasplevy/1d57eb5adf33c05739bd14573c546613 to your computer and use it in GitHub Desktop.
<?php // don't copy this line into your funcitons.php file
/**
* Customize the default tab displayed when a student visits the student dashboard
*/
function my_custom_student_dashboard_tab( $tab ) {
return 'view-courses';
}
add_filter( 'llms_student_dashboard_default_tab', 'my_custom_student_dashboard_tab' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment