Boss (BuddyBoss)
When Max Mega Menu is enabled for the BuddyBoss “Titlebar” menu, the menu items will be hidden inside an ellipsis button.
To fix it, copy the template-parts/header-middle-column.php file to your Child Theme (keeping the folder structure intact).
Find
1 2 3 4 5 6 7 8 |
<div class="header-navigation"> <div id="header-menu"> <ul> <?php echo $buddypanel_menu . $titlebar_menu; ?> </ul> </div> <a href="#" class="responsive_btn"><i class="fa fa-align-justify"></i></a> </div> |
Replace with:
1 |
<?php echo $buddypanel_menu . $titlebar_menu; ?> |