pdesignz wrote:How can I add an additional drop down menu, like the drop down for the categories section. This would be links separate from categories, but would like to resemble the look of the drop down menu.
Thanks
Hi pdesignz,
To add additional drop down menu to your Categories Header Menu plugin go to /Plugins/SevenSpikes.Nop.Plugins.CategoriesHeaderMenu/Views/CategoriesHeaderMenu and open CategoriesHeaderMenu.cshtml view.
In the view you can add additional drop down menu like this:
@if (Model.ShowManufacturers)
{
<li><a href="@Url.RouteUrl("ManufacturerList")">@T("Manufacturers")</a>
<ul>
@Html.Raw(Model.ManufacturersHtml)
</ul>
</li>
}
@* Put your additional drop down here *@
<li><a href="#">My additional drop down</a>
<ul>
<li><a href="#">Drop down Item 1</a></li>
<li><a href="#">Drop down item 2</a></li>
</ul>
</li>