Hi @meir321
If you disable some plugins in Freesoul Deactivate Plugins => Backend => Backend SIngles, when all works right it happens this:
- FDP rebuilds the admin menu and save it to its internal cache
- Every time you visit a backend page, FDP will show you the admin menu taken from its internal cache. This is to avoid showing an admin menu that misses the menu items that were added by the disabled plugins
From your words, It looks like when FDP built the admin menu and saved it to its internal cache some menu items were missing.
First, let’s see if deleting the FDP internal cache the issue is solved.
I suggest you try to activate again FDP. By doing that FDP will build again the admin menu, because its internal cache is cleared when you deactivate it.
If you still have the same issue, try to add this line of code to the file wp-config.php before the comment /* That’s all, stop editing! Happy publishing. */:
define( 'FDP_SHOW_ADMIN_MENU_DISABLED_PLUGINS', false );
By doing that, FDP will not show the admin menu taking it from its internal cache, but the admin menu will be created on the fly as usually done by the core of WordPress. This means that where you have disabled some plugins, the admin menu items added by those plugins will be not shown.
In this case, can you see the menu items of the active plugins?
As a side note, if the admin menu taken from the cache of FDP has some wrong links, this may be caused by the plugins that adds those links, and it happens when those plugins don’t add the menu items in a standard way. If this is also you case, please, give me the list of the menu items and the related plugins that add those items, so I can test them on my testing installation.
I hope it helps.
Have a great day!
Jose