Hi,
just installed WPERP at our intranet. After activation and setup wizard, the general admin menu disappeared. Anyone else had such a problem or has an idea where to search?
The whole left menu bar or it’s some of the specific menus? WPERP has a manu hiding feature under the Tools->General settings. Please make sure you have unchecked all the menus here.
Hi, thanks for the fast reply. The whole menu is gone. I already directly called the “tool” section and tried different settings. That makes no difference.
Hi Mehedi! I agree with Mikesta, WPERP conflicts with the plugin wpDataTables which causes the admin menu on the left dissappear. I have tested these two plugins as the only plugins installed in a freshly installed WP. In this case, neither of the two plugins can only be activated that makes the admin menu appear again.
SOLVED:
In the file: wp-content/plugins/wpdatatables/assets/css/admin/admin.css around line 378 you will find this:
.wpdt-c #adminmenuback {
z-index: 100;
}
Please, change form 100 to 1 and clare cache.
OR
Deactivate wpDataTables, than
You can install this plugin: https://wordpress.org/plugins/add-admin-css/
and put this in it:
.wpdt-c #adminmenuback {
z-index: 1 !important;
}