Same here, just updated to 4.7 and I no longer see the options for Ultimate Member in the Menus.
All menu’s are now visible to everybody…oops..
I hope they can fix that soon, though in the meantime this’ my quick solution. Create another menu and use as follows.
Replace your menu:
wp_nav_menu( array()); // show menu
with:
if(is_user_logged_in()){
wp_nav_menu( array()); // show menu items for signed users
} else {
wp_nav_menu( array()); // show menu items for un-signed user
}
Hope this can help
Hi All,
Thanks for reporting. This has been fixed on the latest release of UM:
https://github.com/ultimatemember/ultimatemember/releases/tag/v1.3.78
Thanks.
I can confirm that the issue is resolved with this update.
Thanks, great work!