Hello, I am very new to Hippo.
I am trying to create a submenu.
I have created a submenu from edit menu in Hippo CMS channels.
But, i am not able to get that submenu on selecting the parent or on hovering the parent.
After doing some research, i found that childMenuItems will have submenus, i tried to edit base-top-menu.tfl to below
<#if menu??>
<#if menu.siteMenuItems??>
- {subitem.name?html}</span> </a></li> </#list> </#if> <li><a href="<@hst.link link=item.hstLink/>" class="activelink"><span class="label-nav">{item.name?html}
- ${item.name?html}
<#list menu.siteMenuItems as item>
<#if item.selected || item.expanded>
<#if item.childMenuItems??>
<#list item.childMenuItems as subitem>
<#else>
</#if>
</#list>
</#if>
<@hst.cmseditmenu menu=menu/>
</#if>
But, nothing is happening.
Can you please help me.