-
AuthorPosts
-
July 15, 2017 at 8:46 am #821601
After the 4.1 update, when in mobile menu / browser minimized view, one of my menu items (‘My Account’ link which is only visible when a user is logged in) does not get condensed into the burger menu. Instead it overlaps onto the logo. I have followed the steps described about clearing cache, disabling then reactivating plugins and updating child theme.
July 15, 2017 at 9:15 am #821606The ‘My Account’ is one that I’ve had to add manually through functions.php so it’s not being included in the menu list. But with the previous Enfold version this was not a problem. Any suggestions? This is the code I am using in functions:
// Filter wp_nav_menu() to add profile link add_filter( 'wp_nav_menu_items', 'my_nav_menu_profile_link', 10, 2); function my_nav_menu_profile_link($menu,$args) { if( $args->menu_id == 'avia-menu' ){ if (!is_user_logged_in()) { return $menu; } else { $profilelink = '<li><a href="' . bp_loggedin_user_domain( '/' ) . '">' . __('My Profile') . '</a></li>'; } $menu = $menu . $profilelink; } return $menu; }
However, the issue seems to be on the extends beyond this because even when a desktop browser is half minimized, even without the burger/mobile menu being triggered, other menu links overlapp the logo. So if you go my website and decrease your browser size you will see the problem occur.
- This reply was modified 7 years, 4 months ago by EnlightenedMedia.
July 15, 2017 at 9:33 am #821609I just realized that as a result of activating and deactivating the bbPress forum plugins, all my forums and forum pages have disappeared. This update is breaking my site. Please help!
July 15, 2017 at 9:44 am #821616I just deactivated and reactivated bbPress a second time and my forums are back online. *phew*
July 16, 2017 at 6:44 am #821911 -
AuthorPosts
- You must be logged in to reply to this topic.