Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #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.

    #821606

    The ‘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.

    #821609

    I 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!

    #821616

    I just deactivated and reactivated bbPress a second time and my forums are back online. *phew*

    #821911

    Hi,

    Please send us a temporary admin login and login URL so that we can have a closer look. You can post the details in the Private Content section of your reply.

    Best regards,
    Rikard

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.