- 14
is there a way to display simple links (custom links) or individual manufacturers in the side menu?
if (item.Type == MenuItemType.Manufacturers)
{
item.Type = MenuItemType.ManufacturerList;
}
if (item.Type == MenuItemType.Vendors)
{
item.Type = MenuItemType.VendorList;
}
if (item.Type == MenuItemType.Manufacturers && item.CatalogTemplate != CatalogTemplate.Simple)
{
item.Type = MenuItemType.ManufacturerList;
}
if (item.Type == MenuItemType.Vendors && item.CatalogTemplate != CatalogTemplate.Simple)
{
item.Type = MenuItemType.VendorList;
}