elwebdeveloper
Forum Replies Created
-
Not using that but you think that would help? I was not looking into that since admin account receives the email when trying to reset the password, so that tells me that mail is working properly.
I got the same problem, I though it was mail() or a related issue but when I tested with the resetting admin (for password reset) I received the email so I don’t think it’s mail() anymore. Any help will be appreciated
Forum: Fixing WordPress
In reply to: Not getting password reset emails from WPHi, I got this problem, similar to that above, kind of anyway. When I request a password reset, no email shows except for the admin user, it’s the only user I can receive the password reset email. Yet, I have not tried finding any other user that might also available for resetting as the admin user. As you see this is a very odd issue, how can I solve this, am I missing something in the settings? I will appreciate any help
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 menuwith:
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, I did recently update to wp 4.7 as well and Ultimate Member is broken, a quick example, I have menus that are restricted but after the update, ultimate menus do not show while editing a menu item, any help will be welcome?