Title: Custom dashboard
Last modified: June 10, 2020

---

# Custom dashboard

 *  Resolved [devhendrix](https://wordpress.org/support/users/devhendrix/)
 * (@devhendrix)
 * [6 years ago](https://wordpress.org/support/topic/custom-dashboard-4/)
 * I’m planning to use Tutor LMS for a school website project. The website will 
   not have the function to sell courses, because only the students who are already
   engaged on the school will access the content. Because of that, I was wondering
   if it’s possible to customize the tutor lms dashboard. I mean, remove the whishlist
   part, earnings for instructors and so on.
 * Does anybody could help me?
 * Thank you very much in advance!

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [in_jail_out_soon](https://wordpress.org/support/users/md40men/)
 * (@md40men)
 * [6 years ago](https://wordpress.org/support/topic/custom-dashboard-4/#post-12966981)
 * Hi [@devhendrix](https://wordpress.org/support/users/devhendrix/)
 * yes its possible, put the following code in your functions.php
 *     ```
       /* Removing some of Tabs in dashboard */
       add_filter('tutor_dashboard/nav_items', 'remove_some_links_dashboard');
       function remove_some_links_dashboard($links){
       	unset($links['whishlist']);
       	unset($links['earnings']);
       	return $links;
       }
       ```
   
 * You can read about this in the documentation -> [https://docs.themeum.com/tutor-lms/developers/editing-dashboard-links/](https://docs.themeum.com/tutor-lms/developers/editing-dashboard-links/)
    -  This reply was modified 6 years ago by [in_jail_out_soon](https://wordpress.org/support/users/md40men/).
    -  This reply was modified 6 years ago by [in_jail_out_soon](https://wordpress.org/support/users/md40men/).
 *  Thread Starter [devhendrix](https://wordpress.org/support/users/devhendrix/)
 * (@devhendrix)
 * [6 years ago](https://wordpress.org/support/topic/custom-dashboard-4/#post-12967541)
 * Thank you very much [@md40men](https://wordpress.org/support/users/md40men/) !!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Custom dashboard’ is closed to new replies.

 * ![](https://ps.w.org/tutor/assets/icon-256x256.gif?rev=3193875)
 * [Tutor LMS - eLearning and online course solution](https://wordpress.org/plugins/tutor/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/tutor/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/tutor/)
 * [Active Topics](https://wordpress.org/support/plugin/tutor/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/tutor/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/tutor/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [devhendrix](https://wordpress.org/support/users/devhendrix/)
 * Last activity: [6 years ago](https://wordpress.org/support/topic/custom-dashboard-4/#post-12967541)
 * Status: resolved