"Disable Nav Menu Settings" Not Working?
-
I use a different plugin to display the navigation menu based on the user’s role. Similar to this thread:
https://wordpress.org/support/topic/ultimatemember-menu-settings?replies=2
I went to Settings > Advanced</strong> > Disable Nav Menu Settings and set the option to “On”, but I still see the Ultimate Member nav settings on my menu page:
https://s32.postimg.org/uoyrcnak5/um_nav.png
Is there something I’m missing?
-
Hi,
We’ve released version 1.3.65.
Let us know if the update resolves the issue.
Regards,
Just updated the plugin and the issue is still there.
I installed Ultimate Member on a fresh WordPress install and it seems that the setting works. So it looks like this issue is on my end. Is there a way to clear the plugin’s cache?
Hi Ethan
Try 1) Go to your settings Plugin/Control Panel and find User Cache (Run this task from time to time to keep your DB clean.)
Try 2) If your host has a cache system try to clean it
Try 3) In your Plugin Settings go to aparience/profile menu and click in the option RESET SECCTION at the end of the page
Hi Angelo,
I don’t understand where you are telling me to go for option #1 and #2. May you please clarify?
#1 )Some Host Providers has a cache sistem so ask to you hosing provider to clean your cache site …if you have it.
#2 ) if you go to your Ultimate Member Settings/Aparence/Profile Menu ..you will see a Reset Section at the and of the page …this option will reset that section.
There is someting strange also …you said (I went to Settings/Advanced/ Disable Nav Menu Settings and set the option to “On”, but I still see the Ultimate Member nav settings on my menu page:)
If you dont want to see those settings in you menu page you need to set “off” not on …
Is it posible for you to send a Sreenshot?
For your solution #2, I’m not sure how that is related to the navigation I am trying to disable since I have that turned off and I don’t use that feature…
You’re wrong on having “Disable Nav Menu Settings” set to “Off” if I want to disable that on my menu navigation. I did this test on a new fresh install as I mentioned above with the option set to “On” and it worked.
I just performed a clean install and I still have the same issue. However, I found a plugin conflict: Nav Menu Roles. This is the plugin I am using as a replacement for menu access based on user roles.
In the plugin’s FAQ they provide a solution for plugin developers to work around with the hook that they created:
https://wordpress.org/plugins/nav-menu-roles/faq/
I think this is worth fixing because I have the Ultimate Member “Community Roles” connected to my custom WordPress roles that I’ve created. This plugin allows me to display the menu based on those roles instead. I’d like to simplify the options for my menu items because I have other users that will be on my site and I don’t want them to use the Ultimate Member navigation settings.
Thanks for sharing. We’ll have a look at that plugin’s FAQs for the fix
I see this ticket was set to resolved, but I am still seeing this issue even with the latest version of Ultimate Member (v1.3.68):
https://s32.postimg.org/uoyrcnak5/um_nav.png
Any updates?
4.5.3
Running into this issue even with the latest changes. To fix it, I added the following in my
functions.php:add_action( 'admin_head', 'hide_um_nav_settings' ); function hide_um_nav_settings() { global $pagenow; if ( $pagenow == 'nav-menus.php' ) { ?> <script type="text/javascript"> jQuery(document).ready(function($) { $(".um-nav-edit").hide(); } ); </script> <?php } }Have to hack around until it’s officially fixed by the developers, but this will due for now.
The topic ‘"Disable Nav Menu Settings" Not Working?’ is closed to new replies.