Hi,
It looks like you may have downloaded Framework before one of our hotfix patches was published. The problem is probably the setting in your theme.skin file that sets MaxDataRenderDepth to 1 on the main menu when it should be -1 (no limit).
You can redownloaded framework and this should be fixed. Alternatively, you can just fix it yourself by replacing the entire <portal:flexmenu />
with the SkinId
of "MainMenu"
in your theme.skin with the following:
<portal:FlexMenu runat="server" SkinID="MainMenu"
AnchorChildSelectedCssClass=""
AnchorCssClass=""
AnchorInnerHtmlBottom=""
AnchorInnerHtmlTop=""
AnchorSelectedCssClass=""
ChildContainerCssClass="subnav"
ChildContainerElement=""
ChildNodesPerUl="-1"
ChildUlCssClass="dropdown-menu"
ContainerCssClass="site-nav"
ContainerElement=""
DescriptionCssClass="mp-mm-desc"
ExtraBottomMarkup=""
ExtraTopMarkup=""
IsMobileSkin="false"
ItemDepthCssPrefix=""
LiChildSelectedCssClass="active"
LiCssClass=""
LiSelectedCssClass="active"
MaxDataRenderDepth="-1"
ParentLiCssClass="dropdown-toggle"
RenderCustomClassOnAnchor=""
RenderCustomClassOnLi=""
RenderDescription="true"
RootLevelLiCssClass=""
RootUlCssClass="nav navbar-nav navbar-right"
StartingNodeOffset="-1"
UlChildSelectedCssClass=""
UlSelectedCssClass=""
/>
If you're having trouble finding the right tag, you can just search the theme.skin for "MainMenu" and it should be there. In an unaltered version of framework it will appear on line 374.
Hope this helps!