Title: Customize the Settings Tab
Last modified: May 18, 2017

---

# Customize the Settings Tab

 *  Resolved [neil2508](https://wordpress.org/support/users/neil2508/)
 * (@neil2508)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/customize-the-settings-tab/)
 * On the settings page of lifterlms there are several tabs General/courses/memberships
   etc… Is there a way to hide these by user role?

Viewing 1 replies (of 1 total)

 *  [Thomas Patrick Levy](https://wordpress.org/support/users/thomasplevy/)
 * (@thomasplevy)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/customize-the-settings-tab/#post-9146987)
 * @neil2508m,
 * We don’t have any settings for this but you could filter the output and unset
   tabs for roles you don’t want to be able to access them, something like:
 *     ```
       add_filter( 'lifterlms_settings_tabs_array', function( $tabs ) {
   
       	$user = wp_get_current_user();
   
       	if ( ! in_array( 'administrator', $user->roles ) ) {
       		unset( $tabs['checkout'] );
       	}
   
       	return $tabs;
   
       }, 777, 1 );
       ```
   
 * This would remove the “checkout” tab for all users that aren’t admins
 * Hope that helps,

Viewing 1 replies (of 1 total)

The topic ‘Customize the Settings Tab’ is closed to new replies.

 * ![](https://ps.w.org/lifterlms/assets/icon.svg?rev=2034507)
 * [LifterLMS - WP LMS for eLearning, Online Courses, & Quizzes](https://wordpress.org/plugins/lifterlms/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/lifterlms/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/lifterlms/)
 * [Active Topics](https://wordpress.org/support/plugin/lifterlms/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/lifterlms/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/lifterlms/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Thomas Patrick Levy](https://wordpress.org/support/users/thomasplevy/)
 * Last activity: [9 years, 3 months ago](https://wordpress.org/support/topic/customize-the-settings-tab/#post-9146987)
 * Status: resolved