Hi, I hope you can help me, I have troubles trying to show items from a list of links in my Site Settings. In the image I show how is my configuration in the backoffice.
This is the way I get the settings:
var siteSettings = (SiteSettings)Umbraco.ContentAtRoot().SingleOrDefault(x => x.IsDocumentType("siteSettings"));
In this part I only have to show the link from Item 1:
@if (siteSettings.InternalLinks.Any())
{
@foreach (var item in siteSettings.InternalLinks)
{
Show site settings, display nested list
Hi, I hope you can help me, I have troubles trying to show items from a list of links in my Site Settings. In the image I show how is my configuration in the backoffice.
This is the way I get the settings:
In this part I only have to show the link from Item 1:
@foreach (var item in siteSettings.InternalLinks) {-
@item.Value("linkTitle")
}
}I am also having the same Issue. Did you get any solution?
I guess your InternalLinks is your NedstedContent and inside that NestedContent you have a Multiple Url Picker.
is working on a reply...