I have a skin where I register the skin tag for the DNN menu system:
<%@ Register TagPrefix="dnn" TagName="MENU" src="~/DesktopModules/DDRMenu/Menu.ascx" %>
Then I have the tag used in the skin, with the corresponding Simple folder in the same skin path (taken directly from the Gravity host skin):
<dnn:MENU ID="bootstrapNav" MenuStyle="Simple" runat="server"></dnn:MENU>
But I'm getting the following error:
An error has occurred. DotNetNuke.Services.Exceptions.ModuleLoadException: Object reference not set to an instance of an object. ---> System.NullReferenceException: Object reference not set to an instance of an object. at DotNetNuke.UI.Navigation.GetNavigationNodes(DNNNode objRootNode, ToolTipSource eToolTips, Int32 intStartTabId, Int32 intDepth, Int32 intNavNodeOptions) at DotNetNuke.UI.Navigation.GetNavigationNodes(String strNamespace, ToolTipSource eToolTips, Int32 intStartTabId, Int32 intDepth, Int32 intNavNodeOptions) at DotNetNuke.Web.DDRMenu.SkinObject.OnPreRender(EventArgs e) --- End of inner exception stack trace ---
I'm on the latest version of DNN (7.2.2).
Any ideas?