Banner for Simplify Admin Panel
Allows easy removal of menu links, submenu links, and dashboard widgets from the WordPress Admin Panel. Wordpress Tutorial
Noted That:
  • To install correctly this simplify-admin-panel.zip .
  • Fisrt Download the simplify-admin-panel.zip to your computer
  • Extract/Open simplify-admin-panel.zip to Your Computer.
  • Then, Find readme.txt file inside simplify-admin-panel.zip and Open readme.txt .
  • Now, Read the Requirements of this plugin. Which Wordpress Version and PHP Version are required to run this Plugin in Your Wordpress Site.
  • Then, Follow the Tips Below.
Start the Tips:

Step-1 : Download " simplify-admin-panel.zip " to Your Local Computer.

Step-2 : Then, Login to your " yourdomain.com/wp-admin " Dashboard.

Login to Wordpress Simplify Admin Panel

Step-3 : Then, Click on " Plugins " + " Add New " from left Side Menu of Dashboard.

Go to Plugin Install Simplify Admin Panel

Step-4 : Now, Click on " Upload Plugin " button.

Click Upload Button Simplify Admin Panel

Step-5 : Now, Browse " simplify-admin-panel.zip " Downloaded plugin from your computer, Where you downloaded " simplify-admin-panel.zip " According to Step – 1 Above then, click on " Install Now "

Upload Plugin Simplify Admin Panel

Step-6 : Now, Click on " Active Plugin "

Activate Simplify Admin Panel

Step-7 : Then, See left Side Menu. " Simplify Admin Panel " folder is added on left Side Menu. Now, Click on " Simplify Admin Panel " folder.

Noted that: If you do not see " Simplify Admin Panel " folder on left Side Menu then, see at left Side Menu " Settings " or " Tools ".

Step-8 : Now you configure yourself oR Watch video tutorial below about Simplify Admin Panel Configurations and Settings or How to work " Simplify Admin Panel " in your WordPress site.

oR

After Activated Plugin According to Step-6 then,

  1. Go to " Plugins " + " Installed Plugin " from Wordpress Admin Panel Leftside Menu.
  2. or Direct go to: https://yourdomain/wp-admin/plugins.php
  3. Then, Find " Simplify Admin Panel " Activated Plugin from Plugin List.
  4. Then, Click on " Settings " from Plugin that is Simplify Admin Panel
  5. Now, Edit/Add/Config the setting and Click on " Save Changes " button,
WP Plugin Setting



Guide

To use this plugin, install it activate it like you would any other plugin. Then open up your wp-config.php file. Right above the line that says That's all, stop editing! Happy blogging. put in lines like the following:


define('SAP_REMOVE_THESE_MENUS', 'Dashboard, Posts, Media, Pages, Comments, Appearance, plugins, users, tools, settings');
define('SAP_REMOVE_THESE_SUBMENUS', 'Tools|Available Tools, users|all users, Add New');
define('SAP_REMOVE_THESE_DASHBOARD_BOXES', 'Right Now, Recent Comments, Incoming Links, Plugins, quickpress, recent drafts, wordpress blog, other wordpress news');

Change the values in the comma-separated list to match the exact menu links, submenu links, and dashboard boxes that you’d like to remove. Note that the list is not case-sensitive, and spacing around the commas is ignored.

If you don’t need some of the functionality, you can just omit that line entirely. For instance, if you don’t need to remove any menu links, just remove the define('SAP_REMOVE_THESE_SUBMENUS', ... ) line.

You can also remove menu and submenu items by their URL, and dashboard boxes by their ID. For example, these lines:


define('SAP_REMOVE_THESE_MENUS', 'Pages, Tools');
define('SAP_REMOVE_THESE_SUBMENUS', 'Plugins|Editor, Posts|Categories');
define('SAP_REMOVE_THESE_DASHBOARD_BOXES', 'Recent Comments, Plugins');

are equivalent to


define('SAP_REMOVE_THESE_MENUS', 'edit.php?post_type=page, tools.php');
define('SAP_REMOVE_THESE_SUBMENUS', 'plugin-editor.php, edit-tags.php?taxonomy=category');
define('SAP_REMOVE_THESE_DASHBOARD_BOXES', 'dashboard_recent_comments, dashboard_plugins');

Name